Skip to content

Commit

Permalink
configure: detect mipsel host
Browse files Browse the repository at this point in the history
Detect mipsel before mips because mipsel has __mips__ flag as well.

PR-URL: nodejs#2971
Reviewed-By: Ben Noordhuis <[email protected]>
Reviewed-By: Johan Bergström <[email protected]>
  • Loading branch information
kapouer authored and bnoordhuis committed Sep 21, 2015
1 parent 571a517 commit 5819d7a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,7 @@ def host_arch_cc():
'__aarch64__' : 'arm64',
'__arm__' : 'arm',
'__i386__' : 'ia32',
'__MIPSEL__' : 'mipsel',
'__mips__' : 'mips',
'__PPC64__' : 'ppc64',
'__PPC__' : 'ppc',
Expand Down

0 comments on commit 5819d7a

Please sign in to comment.