svn commit: r290227 - head/lib/msun/tests
Andrew Turner
andrew at FreeBSD.org
Sat Oct 31 10:16:46 UTC 2015
Author: andrew
Date: Sat Oct 31 10:16:44 2015
New Revision: 290227
URL: https://svnweb.freebsd.org/changeset/base/290227
Log:
We have long double on arm64, and the tests pass so enable them.
Sponsored by: ABT Systems Ltd
Modified:
head/lib/msun/tests/Makefile
Modified: head/lib/msun/tests/Makefile
==============================================================================
--- head/lib/msun/tests/Makefile Sat Oct 31 09:45:11 2015 (r290226)
+++ head/lib/msun/tests/Makefile Sat Oct 31 10:16:44 2015 (r290227)
@@ -7,7 +7,9 @@ CFLAGS+= -DHAVE_FENV_H
# Not sure why this isn't defined for all architectures, since most
# have long double.
-.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
+.if ${MACHINE_CPUARCH} == "aarch64" || \
+ ${MACHINE_CPUARCH} == "amd64" || \
+ ${MACHINE_CPUARCH} == "i386"
CFLAGS+= -D__HAVE_LONG_DOUBLE
.endif
More information about the svn-src-head
mailing list