summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedor Indutny <fedor.indutny@gmail.com>2014-01-09 01:08:29 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2014-01-09 01:08:29 +0400
commit0afdfae0eb1ab263337889e716d5e8fe5e54c453 (patch)
treea27b22d4db29b95805c0ec539da9b77d21808606
parent730e511b3598c5fea416da680060c83ed2751a25 (diff)
downloadnode-0afdfae0eb1ab263337889e716d5e8fe5e54c453.tar.gz
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
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index b950bdcb7..38a88c93f 100755
--- a/configure
+++ b/configure
@@ -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())