mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
build: older pythons don't support ternary if
This commit is contained in:
parent
fcca3585fe
commit
f9f9239fa2
4
configure
vendored
4
configure
vendored
@ -428,8 +428,10 @@ def compiler_version():
|
||||
def configure_arm(o):
|
||||
if options.arm_float_abi:
|
||||
arm_float_abi = options.arm_float_abi
|
||||
elif is_arm_hard_float_abi():
|
||||
arm_float_abi = 'hard'
|
||||
else:
|
||||
arm_float_abi = 'hard' if is_arm_hard_float_abi() else 'default'
|
||||
'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