summaryrefslogtreecommitdiffstats
path: root/lib/libcompiler_rt
diff options
context:
space:
mode:
authorandrew <andrew@FreeBSD.org>2014-10-01 16:08:19 +0000
committerandrew <andrew@FreeBSD.org>2014-10-01 16:08:19 +0000
commit47431db4e9e945e13f4f501b09cb6721006ff747 (patch)
tree1db6bc21e5524b4588644495a70ff02149eca062 /lib/libcompiler_rt
parent732fbf8303d8a3b666e2cffb9a9e26859a430a58 (diff)
downloadFreeBSD-src-47431db4e9e945e13f4f501b09cb6721006ff747.zip
FreeBSD-src-47431db4e9e945e13f4f501b09cb6721006ff747.tar.gz
Clean up detection of hard-float ABIs. As with big-endian in r272368 we
can check against arm*hf*.
Diffstat (limited to 'lib/libcompiler_rt')
-rw-r--r--lib/libcompiler_rt/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcompiler_rt/Makefile b/lib/libcompiler_rt/Makefile
index d29e2a2..c31eced 100644
--- a/lib/libcompiler_rt/Makefile
+++ b/lib/libcompiler_rt/Makefile
@@ -164,9 +164,9 @@ SRCF+= stdatomic
.endif
.for file in ${SRCF}
-. if ${MACHINE_ARCH} == "armv6hf" && exists(${CRTSRC}/${CRTARCH}/${file}vfp.S)
+. if ${MACHINE_ARCH:Marm*hf*} != "" && exists(${CRTSRC}/${CRTARCH}/${file}vfp.S)
SRCS+= ${file}vfp.S
-. elif (${MACHINE_CPUARCH} != "arm" || ${MACHINE_ARCH} == "armv6hf") && exists(${CRTSRC}/${CRTARCH}/${file}.S)
+. elif !(${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH:Marm*hf*} == "") && exists(${CRTSRC}/${CRTARCH}/${file}.S)
SRCS+= ${file}.S
. else
SRCS+= ${file}.c
OpenPOWER on IntegriCloud