mirror of https://github.com/nodejs/node.git
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:
parent
571a517259
commit
5819d7a050
|
@ -566,6 +566,7 @@ def host_arch_cc():
|
||||||
'__aarch64__' : 'arm64',
|
'__aarch64__' : 'arm64',
|
||||||
'__arm__' : 'arm',
|
'__arm__' : 'arm',
|
||||||
'__i386__' : 'ia32',
|
'__i386__' : 'ia32',
|
||||||
|
'__MIPSEL__' : 'mipsel',
|
||||||
'__mips__' : 'mips',
|
'__mips__' : 'mips',
|
||||||
'__PPC64__' : 'ppc64',
|
'__PPC64__' : 'ppc64',
|
||||||
'__PPC__' : 'ppc',
|
'__PPC__' : 'ppc',
|
||||||
|
|
Loading…
Reference in New Issue