mirror of
https://github.com/frida/tinycc
synced 2024-12-25 22:46:49 +03:00
Select VFP if triplet is arm-linux-gnueabihf
A target triplet of arm-linux-gnueabihf indicates that the compiler should use the VFP variant of the calling convention which as its name implies requires VFP. This commit enables VFP when triplet is arm-linux-gnueabihf.
This commit is contained in:
parent
e76058c478
commit
c41caac02d
2
configure
vendored
2
configure
vendored
@ -335,7 +335,7 @@ if test -z "$cross_prefix" ; then
|
|||||||
|
|
||||||
if test "$cpu" = "arm" ; then
|
if test "$cpu" = "arm" ; then
|
||||||
if test "${triplet%eabihf}" != "$triplet" ; then
|
if test "${triplet%eabihf}" != "$triplet" ; then
|
||||||
confvars="$confvars arm_eabihf"
|
confvars="$confvars arm_eabihf arm_vfp"
|
||||||
elif test "${triplet%eabi}" != "$triplet" ; then
|
elif test "${triplet%eabi}" != "$triplet" ; then
|
||||||
confvars="$confvars arm_eabi"
|
confvars="$confvars arm_eabi"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user