From owner-freebsd-stable@FreeBSD.ORG Sat Sep 29 14:55:33 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2239106566B for ; Sat, 29 Sep 2012 14:55:32 +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 AEF308FC0A for ; Sat, 29 Sep 2012 14:55:32 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:e87b:31b7:81d5:717c] (unknown [IPv6:2001:7b8:3a7:0:e87b:31b7:81d5:717c]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 5940F5C59; Sat, 29 Sep 2012 16:55:25 +0200 (CEST) Message-ID: <50670BE1.2000506@andric.com> Date: Sat, 29 Sep 2012 16:55:29 +0200 From: Dimitry Andric User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20120925 Thunderbird/16.0 MIME-Version: 1.0 To: Norbert Aschendorff References: <5066CD86.1020900@yahoo.de> In-Reply-To: <5066CD86.1020900@yahoo.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Building FreeBSD-STABLE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2012 14:55:33 -0000 On 2012-09-29 16:16, Norbert Aschendorff wrote: ... > src.conf does not exist here, and make.conf contains this: > > # added by use.perl 2012-08-23 17:45:18 > PERL_VERSION=5.14.2 > > CFLAGS=-pipe > #CC=clang > #CC=gcc > CXXFLAGS=-pipe > #CXX=clang++ > #CXX=g++ There is your problem. Never assign to CFLAGS or CXXFLAGS using the = operator, always add to them, using the += operator instead. Also, you don't need to duplicate flags in CXXFLAGS, which are already in CFLAGS. You should only add C++ specific flags to CXXFLAGS. Last but not least, -pipe is completely unnecessary, it is already the default.