mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
configure: always set arm_float_abi
When not specified as a configure flag, and not derived from system configuration, `arm_float_abi` should be set to `'default'`. fix #6789
This commit is contained in:
parent
730e511b35
commit
0afdfae0eb
2
configure
vendored
2
configure
vendored
@ -431,7 +431,7 @@ def configure_arm(o):
|
||||
elif is_arm_hard_float_abi():
|
||||
arm_float_abi = 'hard'
|
||||
else:
|
||||
'default'
|
||||
arm_float_abi = 'default'
|
||||
o['variables']['armv7'] = int(is_arch_armv7())
|
||||
o['variables']['arm_fpu'] = 'vfpv3' # V8 3.18 no longer supports VFP2.
|
||||
o['variables']['arm_neon'] = int(is_arm_neon())
|
||||
|
Loading…
Reference in New Issue
Block a user