From c41caac02d53373b296ccb179b730ada62137cc0 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Thu, 15 Mar 2018 23:02:56 +0000 Subject: [PATCH] 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. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 1ee3acb..63881a2 100755 --- a/configure +++ b/configure @@ -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