svn commit: r195671 - projects/ppc64/sys/conf

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Jul 14 02:19:10 UTC 2009


Author: nwhitehorn
Date: Tue Jul 14 02:19:09 2009
New Revision: 195671
URL: http://svn.freebsd.org/changeset/base/195671

Log:
  Set INLINE_LIMIT for ppc64. Now, with some symlink hackery, a kernel build
  for TARGET_ARCH=ppc64 will actually start. Of course, it will not
  complete...

Modified:
  projects/ppc64/sys/conf/kern.mk

Modified: projects/ppc64/sys/conf/kern.mk
==============================================================================
--- projects/ppc64/sys/conf/kern.mk	Tue Jul 14 01:56:18 2009	(r195670)
+++ projects/ppc64/sys/conf/kern.mk	Tue Jul 14 02:19:09 2009	(r195671)
@@ -80,7 +80,7 @@ INLINE_LIMIT?=	8000
 # floating point registers for integer operations which it has a tendency to do.
 # Also explicitly disable Altivec instructions inside the kernel.
 #
-.if ${MACHINE_ARCH} == "powerpc"
+.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "ppc64"
 CFLAGS+=	-msoft-float -mno-altivec
 INLINE_LIMIT?=	15000
 .endif


More information about the svn-src-projects mailing list