From owner-svn-src-projects@FreeBSD.ORG Tue Jul 14 02:19:10 2009 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 463D91065672; Tue, 14 Jul 2009 02:19:10 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 33D0D8FC16; Tue, 14 Jul 2009 02:19:10 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n6E2J9T5042059; Tue, 14 Jul 2009 02:19:09 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n6E2J9Jh042057; Tue, 14 Jul 2009 02:19:09 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200907140219.n6E2J9Jh042057@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 14 Jul 2009 02:19:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r195671 - projects/ppc64/sys/conf X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jul 2009 02:19:10 -0000 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