svn commit: r209877 - head/lib/msun

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sat Jul 10 14:40:58 UTC 2010


Author: nwhitehorn
Date: Sat Jul 10 14:40:57 2010
New Revision: 209877
URL: http://svn.freebsd.org/changeset/base/209877

Log:
  powerpc64 floating-point is identical to powerpc, so use the same
  code on both architectures.

Modified:
  head/lib/msun/Makefile

Modified: head/lib/msun/Makefile
==============================================================================
--- head/lib/msun/Makefile	Sat Jul 10 14:39:08 2010	(r209876)
+++ head/lib/msun/Makefile	Sat Jul 10 14:40:57 2010	(r209877)
@@ -14,6 +14,8 @@
 
 .if ${MACHINE_ARCH} == "i386"
 ARCH_SUBDIR= i387
+.elif ${MACHINE_ARCH} == "powerpc64"
+ARCH_SUBDIR= powerpc
 .else
 ARCH_SUBDIR= ${MACHINE_ARCH}
 .endif


More information about the svn-src-head mailing list