From owner-freebsd-current@FreeBSD.ORG Sun Mar 21 15:35:43 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFF54106564A for ; Sun, 21 Mar 2010 15:35:43 +0000 (UTC) (envelope-from dimitry@andric.com) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id A0FEE8FC0C for ; Sun, 21 Mar 2010 15:35:43 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:a9ce:5ce1:c6f8:9a4c] (unknown [IPv6:2001:7b8:3a7:0:a9ce:5ce1:c6f8:9a4c]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id E6A685C59; Sun, 21 Mar 2010 16:35:10 +0100 (CET) Message-ID: <4BA63CB1.3000201@andric.com> Date: Sun, 21 Mar 2010 16:35:13 +0100 From: Dimitry Andric User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.2.2pre) Gecko/20100311 Lanikai/3.1b2pre MIME-Version: 1.0 To: gary.jennejohn@freenet.de References: <201003211232.35497.ken@mthelicon.com> <20100321140304.37618e59@ernst.jennejohn.org> <20100321140804.48cd1876@ernst.jennejohn.org> In-Reply-To: <20100321140804.48cd1876@ernst.jennejohn.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Alexander Best , Pegasus Mc Cleaft , freebsd-current@freebsd.org, Garrett Cooper Subject: Re: build failures after stdlib update X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 15:35:44 -0000 On 2010-03-21 14:08, Gary Jennejohn wrote: >>> CPUTYPE=native >>> CFLAGS=-O2 -fno-strict-aliasing -pipe -s >>> >>> btw: what's the -s switch doing? >> >> It "silences" make. See the man page. It's useful because basically only >> errors are emitted. > > Oops. That's wrong. I got confused. I'd like to know that myself, now > that I'm no longer confused :) From gcc(1): -s Remove all symbol table and relocation information from the exe- cutable. This is more or less the same as running strip(1) over the produced executables. Usually one uses it for non-debug builds.