From owner-cvs-src@FreeBSD.ORG Thu Feb 26 05:00:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA5D16A4CE; Thu, 26 Feb 2004 05:00:03 -0800 (PST) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7D8C43D2D; Thu, 26 Feb 2004 05:00:02 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86])i1QD015O015651; Fri, 27 Feb 2004 00:00:01 +1100 Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) i1QCxx0I031548; Thu, 26 Feb 2004 23:59:59 +1100 Date: Thu, 26 Feb 2004 23:59:58 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov In-Reply-To: <20040226075830.GC68578@ip.net.ua> Message-ID: <20040226234907.I2546@gamplex.bde.org> References: <200402260708.i1Q78Yib084234@repoman.freebsd.org> <20040226075830.GC68578@ip.net.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Bruce Evans cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc_tools Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Feb 2004 13:00:03 -0000 On Thu, 26 Feb 2004, Ruslan Ermilov wrote: > On Wed, Feb 25, 2004 at 11:08:34PM -0800, Bruce Evans wrote: > > bde 2004/02/25 23:08:34 PST > > > > FreeBSD src repository > > > > Modified files: > > gnu/usr.bin/cc/cc_tools Makefile > > Log: > > Backed out the residue of rev.1.13 (bogus addition of -static to CFLAGS). > > Makeworld will add -static in the correct place if needed and possible. > > Self-hosted builds can just use the system default. > > ... > What I hear, Bruce removing static bits? Has somebody abused your commit > bit? ;-) I objected to these static bits before they were committed (see the logs) and never used them. Hard-coding static libraries is just as bad as hard-coding shared libraries. Of course, I configure for non-hard-coded static libraries. NOSHARED=yes in /etc/make.conf gives this for most build-tools (not ones in library directories, since bsd.lib.mk doesn't conert NOSHARED=yet to LDFLAGS+=-static). Bruce