Browse Source

build: support for mips64el

Built and tested successfully on Loongson 3A2000
with Fedora25(mips64el distribution).

PR-URL: https://github.com/nodejs/node/pull/10991
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
v6.x
nanxiongchao 8 years ago
committed by Myles Borins
parent
commit
0c318a6157
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 5
      configure

5
configure

@ -726,6 +726,9 @@ def host_arch_cc():
if rtn != 's390':
break
if rtn == 'mipsel' and '_LP64' in k:
rtn = 'mips64el'
return rtn
@ -805,7 +808,7 @@ def configure_node(o):
if target_arch == 'arm':
configure_arm(o)
elif target_arch in ('mips', 'mipsel'):
elif target_arch in ('mips', 'mipsel', 'mips64el'):
configure_mips(o)
if flavor == 'aix':

Loading…
Cancel
Save