Skip to content

Commit 5819d7a

Browse files
kapouerbnoordhuis
authored andcommitted
configure: detect mipsel host
Detect mipsel before mips because mipsel has __mips__ flag as well. PR-URL: #2971 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Johan Bergström <[email protected]>
1 parent 571a517 commit 5819d7a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

configure

+1
Original file line numberDiff line numberDiff line change
@@ -566,6 +566,7 @@ def host_arch_cc():
566566
'__aarch64__' : 'arm64',
567567
'__arm__' : 'arm',
568568
'__i386__' : 'ia32',
569+
'__MIPSEL__' : 'mipsel',
569570
'__mips__' : 'mips',
570571
'__PPC64__' : 'ppc64',
571572
'__PPC__' : 'ppc',

0 commit comments

Comments
 (0)