mirror of
https://github.com/mirror/tinycc.git
synced 2026-09-01 12:07:53 +08: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:
2
configure
vendored
2
configure
vendored
@@ -335,7 +335,7 @@ if test -z "$cross_prefix" ; then
|
||||
|
||||
if test "$cpu" = "arm" ; then
|
||||
if test "${triplet%eabihf}" != "$triplet" ; then
|
||||
confvars="$confvars arm_eabihf"
|
||||
confvars="$confvars arm_eabihf arm_vfp"
|
||||
elif test "${triplet%eabi}" != "$triplet" ; then
|
||||
confvars="$confvars arm_eabi"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user