Skip to content

Commit 0afdfae

Browse files
committed
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 nodejs#6789
1 parent 730e511 commit 0afdfae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def configure_arm(o):
431431
elif is_arm_hard_float_abi():
432432
arm_float_abi = 'hard'
433433
else:
434-
'default'
434+
arm_float_abi = 'default'
435435
o['variables']['armv7'] = int(is_arch_armv7())
436436
o['variables']['arm_fpu'] = 'vfpv3' # V8 3.18 no longer supports VFP2.
437437
o['variables']['arm_neon'] = int(is_arm_neon())

0 commit comments

Comments
 (0)