Skip to content

Commit

Permalink
configure: fix arm vfpv2
Browse files Browse the repository at this point in the history
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: #4203
Reviewed-By: Ben Noordhuis <[email protected]>
  • Loading branch information
joerg-krause authored and Myles Borins committed Jan 19, 2016
1 parent d00b9fc commit 481d59a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -623,7 +623,7 @@ def configure_arm(o):
else:
arm_float_abi = 'default'

arm_fpu = 'vfpv2'
arm_fpu = 'vfp'

if is_arch_armv7():
arm_fpu = 'vfpv3'
Expand Down

0 comments on commit 481d59a

Please sign in to comment.