1From a45baebcc4c196cfc23cfcf745a855c0e179d629 Mon Sep 17 00:00:00 2001
2From: Damon Lee <Damon.Lee@data61.csiro.au>
3Date: Thu, 12 Jul 2018 15:10:41 +1000
4Subject: [PATCH 1/2] Use the correct FP macro for ARM
5
6---
7 buildrump.sh | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/buildrump.sh b/buildrump.sh
11index e5f3a93..1864f1f 100755
12--- a/buildrump.sh
13+++ b/buildrump.sh
14@@ -1168,7 +1168,7 @@ probearm ()
15 	# build to use hardfloat if the compiler defaults to VFP.
16 	# This is because the softfloat env is not always functional
17 	# in case hardfloat is the compiler default.
18-	if cppdefines __VFP_FP__; then
19+	if cppdefines __ARM_PCS_VFP; then
20 		hf=hf
21 	else
22 		hf=
23-- 
242.11.0
25
26