From owner-svn-src-head@freebsd.org Fri May 4 19:40:36 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4760CFB62D5; Fri, 4 May 2018 19:40:36 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB2D3814DE; Fri, 4 May 2018 19:40:35 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w44JeVMm043761; Fri, 4 May 2018 12:40:31 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w44JeV3b043760; Fri, 4 May 2018 12:40:31 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201805041940.w44JeV3b043760@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r333261 - head/sys/conf In-Reply-To: <201805041931.w44JVS3d096407@repo.freebsd.org> To: Matt Macy Date: Fri, 4 May 2018 12:40:31 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 May 2018 19:40:36 -0000 [ Charset UTF-8 unsupported, converting... ] > Author: mmacy > Date: Fri May 4 19:31:28 2018 > New Revision: 333261 > URL: https://svnweb.freebsd.org/changeset/base/333261 > > Log: > % WITHOUT_FORMAT_EXTENSIONS= XCC=/usr/local/bin/gcc8 make -j96 buildkernel KERNCONF=GENERIC-NODEBUG -s >& log > % grep "inlining failed" log | wc > 234 3570 36065 > Consensus on those polled is that inlining failure warnings are not useful Please try to write plain english commit messages. > Approved by: sbruno > > Modified: > head/sys/conf/kern.mk > > Modified: head/sys/conf/kern.mk > ============================================================================== > --- head/sys/conf/kern.mk Fri May 4 19:28:05 2018 (r333260) > +++ head/sys/conf/kern.mk Fri May 4 19:31:28 2018 (r333261) > @@ -4,7 +4,7 @@ > # Warning flags for compiling the kernel and components of the kernel: > # > CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \ > - -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \ > + -Wmissing-prototypes -Wpointer-arith -Wcast-qual \ > -Wundef -Wno-pointer-sign ${FORMAT_EXTENSIONS} \ > -Wmissing-include-dirs -fdiagnostics-show-option \ > -Wno-unknown-pragmas \ This effects ALL compilers at this point in the file, not just gcc. -- Rod Grimes rgrimes@freebsd.org