aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/arm
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2016-04-06 16:09:10 +0000
committerAndrew Turner <andrew@FreeBSD.org>2016-04-06 16:09:10 +0000
commit4798b7f381aee3930f0dcd26906e2f8299078523 (patch)
tree7f9d52844e57c75b7e192c75ac6910fce3b3ed76 /lib/libc/arm
parent33bed970fa913cbdc392828d1cb1ebd1d8ce2a31 (diff)
downloadsrc-4798b7f381aee3930f0dcd26906e2f8299078523.tar.gz
src-4798b7f381aee3930f0dcd26906e2f8299078523.zip
Disable support for compat syscalls on arm64. These symbols were never
shipped since arm64 exists only on 11+. Submitted by: brooks Reviewed by: emaste, imp
Notes
Notes: svn path=/head/; revision=297619
Diffstat (limited to 'lib/libc/arm')
-rw-r--r--lib/libc/arm/aeabi/aeabi_vfp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/arm/aeabi/aeabi_vfp.h b/lib/libc/arm/aeabi/aeabi_vfp.h
index 927652f193ca..bb2f823d9332 100644
--- a/lib/libc/arm/aeabi/aeabi_vfp.h
+++ b/lib/libc/arm/aeabi/aeabi_vfp.h
@@ -42,7 +42,9 @@
#define AEABI_ENTRY(x) ENTRY(__aeabi_ ## x ## _vfp)
#define AEABI_END(x) END(__aeabi_ ## x ## _vfp)
#else
-#define AEABI_ENTRY(x) ENTRY(__aeabi_ ## x)
+#define AEABI_ENTRY(x) \
+ .set __fbsd_ ## x, __aeabi_ ## x; \
+ ENTRY(__aeabi_ ## x)
#define AEABI_END(x) END(__aeabi_ ## x)
#endif