configure: detect mipsel host

Detect mipsel before mips because mipsel has __mips__ flag as well.

PR-URL: https://github.com/nodejs/node/pull/2971
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
This commit is contained in:
Jérémy Lal 2015-09-20 23:04:46 +02:00 committed by Ben Noordhuis
parent 571a517259
commit 5819d7a050
1 changed files with 1 additions and 0 deletions

1
configure vendored
View File

@ -566,6 +566,7 @@ def host_arch_cc():
'__aarch64__' : 'arm64',
'__arm__' : 'arm',
'__i386__' : 'ia32',
'__MIPSEL__' : 'mipsel',
'__mips__' : 'mips',
'__PPC64__' : 'ppc64',
'__PPC__' : 'ppc',