Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Oct 2015 10:16:44 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r290227 - head/lib/msun/tests
Message-ID:  <201510311016.t9VAGiX7093028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510311016.t9VAGiX7093028>