mirror of https://github.com/nodejs/node.git
configure: fix arm vfpv2
The gcc -mfpu flag for VFPv2 is vfp, not vfpv2 (there is no vfpv2) [1]. [1] https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html PR-URL: https://github.com/nodejs/node/pull/4203 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>pull/4170/head
parent
3b94991bda
commit
84dea1bd0c
|
@ -30,7 +30,7 @@ valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',
|
|||
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'ppc', 'ppc64', 'x32',
|
||||
'x64', 'x86')
|
||||
valid_arm_float_abi = ('soft', 'softfp', 'hard')
|
||||
valid_arm_fpu = ('vfp', 'vfpv2', 'vfpv3', 'vfpv3-d16', 'neon')
|
||||
valid_arm_fpu = ('vfp', 'vfpv3', 'vfpv3-d16', 'neon')
|
||||
valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx')
|
||||
valid_mips_fpu = ('fp32', 'fp64', 'fpxx')
|
||||
valid_mips_float_abi = ('soft', 'hard')
|
||||
|
@ -631,7 +631,7 @@ def configure_arm(o):
|
|||
else:
|
||||
arm_float_abi = 'default'
|
||||
|
||||
arm_fpu = 'vfpv2'
|
||||
arm_fpu = 'vfp'
|
||||
|
||||
if is_arch_armv7():
|
||||
arm_fpu = 'vfpv3'
|
||||
|
|
Loading…
Reference in New Issue