summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJérémy Lal <kapouer@melix.org>2015-09-20 23:04:46 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2015-09-21 12:03:19 +0200
commit5819d7a050fd1a88aa556085c016101b9d9fdc98 (patch)
treeabcabecc1b2036747ed9a039f149811447d9ca15 /configure
parent571a517259e8a3ca44d1b2b6542b81bee6c0801d (diff)
downloadandroid-node-v8-5819d7a050fd1a88aa556085c016101b9d9fdc98.tar.gz
android-node-v8-5819d7a050fd1a88aa556085c016101b9d9fdc98.tar.bz2
android-node-v8-5819d7a050fd1a88aa556085c016101b9d9fdc98.zip
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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index e0f38c6017..0bfaf7887b 100755
--- a/configure
+++ b/configure
@@ -566,6 +566,7 @@ def host_arch_cc():
'__aarch64__' : 'arm64',
'__arm__' : 'arm',
'__i386__' : 'ia32',
+ '__MIPSEL__' : 'mipsel',
'__mips__' : 'mips',
'__PPC64__' : 'ppc64',
'__PPC__' : 'ppc',