From owner-svn-src-all@FreeBSD.ORG Sun Mar 11 06:11:31 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEA7A106564A; Sun, 11 Mar 2012 06:11:31 +0000 (UTC) (envelope-from jmallett@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9DC828FC08; Sun, 11 Mar 2012 06:11:31 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q2B6BVL3096576; Sun, 11 Mar 2012 06:11:31 GMT (envelope-from jmallett@svn.freebsd.org) Received: (from jmallett@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q2B6BVs8096574; Sun, 11 Mar 2012 06:11:31 GMT (envelope-from jmallett@svn.freebsd.org) Message-Id: <201203110611.q2B6BVs8096574@svn.freebsd.org> From: Juli Mallett Date: Sun, 11 Mar 2012 06:11:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r232811 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Mar 2012 06:11:31 -0000 Author: jmallett Date: Sun Mar 11 06:11:31 2012 New Revision: 232811 URL: http://svn.freebsd.org/changeset/base/232811 Log: Disable -Winline on MIPS in preparation for the import of the latest version of the Cavium Simple Executive, which violates large function growth rules in such a way that simply increasing the large function growth parameter is insufficient. Modified: head/sys/conf/kern.mk Modified: head/sys/conf/kern.mk ============================================================================== --- head/sys/conf/kern.mk Sun Mar 11 04:16:42 2012 (r232810) +++ head/sys/conf/kern.mk Sun Mar 11 06:11:31 2012 (r232811) @@ -131,6 +131,9 @@ CFLAGS+= -mcall-aixdesc .if ${MACHINE_CPUARCH} == "mips" CFLAGS+= -msoft-float INLINE_LIMIT?= 8000 +# XXX Disable -Winline. This is needed because of the monstrous code that is +# the Cavium Octeon Simple Executive. +CWARNFLAGS:= ${CWARNFLAGS:N-Winline} .endif #