From owner-freebsd-stable@FreeBSD.ORG Sat Sep 29 14:59:07 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 7F3ED106564A for ; Sat, 29 Sep 2012 14:59:07 +0000 (UTC) (envelope-from norbert.aschendorff@yahoo.de) Received: from nm31-vm1.bullet.mail.gq1.yahoo.com (nm31-vm1.bullet.mail.gq1.yahoo.com [98.136.216.208]) by mx1.freebsd.org (Postfix) with SMTP id 387198FC0A for ; Sat, 29 Sep 2012 14:59:07 +0000 (UTC) Received: from [98.137.12.63] by nm31.bullet.mail.gq1.yahoo.com with NNFMP; 29 Sep 2012 14:59:01 -0000 Received: from [208.71.42.190] by tm8.bullet.mail.gq1.yahoo.com with NNFMP; 29 Sep 2012 14:59:01 -0000 Received: from [127.0.0.1] by smtp201.mail.gq1.yahoo.com with NNFMP; 29 Sep 2012 14:59:01 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.de; s=s1024; t=1348930741; bh=Cmwzev7s953TagiL4C1RVwDdya/ZCCPZgQi53zkIzvU=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=PaKrcizlPQqKDMOhCe50hY5UQZZ1X7PRw22mMtZkvPFW0dg1lBR+yOpxOKi2OSaZ8PNMYA/jkkV9MkiN+La16jjZJMx1pSo56u4MK0ll/um5U22taxFW58w0gHQgIyK2v0Z3t81c+a8BnM9IVppA/MKt78QSM/BivEfBm8kHavg= X-Yahoo-Newman-Id: 94729.74109.bm@smtp201.mail.gq1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: nheJLPAVM1m3nGBmJin441eCK2KxOVWZRtME5z6oBTRuHDQ gLs7Kosv4ID3AnjgvsKKGznZNGtftq228cG1JfUZ_OkNmG0e73iZnuPYYKoC _NXaYlr4xl.gs4ThmRDBEdZXzdJ2rqnLfPFwG77Hn6fPd4k5CdzA0pNS1YOT .Yv8bhQyw5s9Np1M7PJ9NFOUd4yA_7rPpFfxdLID7E1Ic2Qoqk.Dp8um5AyH hw1dxn5Mr.KWOfRnFqevkN08c_okJgMVLU24bjrunwn_QZkkIIw06YKsd51C 5nVcOFAYBh3uDvJVz9CwRxYFFOoeed_bx0N6dqYGkjuw94nKch1gNoeWUlNL VvqRiXIt5R8btflkh0s.k9iXWGiVA.915PFj_leOh3k6wtb1DCqg1Tk6Zr2D Q7fcWDNGWiuo6U5eVsbvu2shADc74EQ1Qn37lAU7nZHkQ346l X-Yahoo-SMTP: d20YFqmswBAWc4wd23BcX3DKFU.SSFWadKORXj_BQPQ- Received: from vostro-linux.goebo.site (norbert.aschendorff@85.216.84.153 with plain) by smtp201.mail.gq1.yahoo.com with SMTP; 29 Sep 2012 07:59:01 -0700 PDT Message-ID: <50670CB3.7050808@yahoo.de> Date: Sat, 29 Sep 2012 16:58:59 +0200 From: Norbert Aschendorff User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120418 Icedove/11.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org References: <5066CD86.1020900@yahoo.de> <50670BE1.2000506@andric.com> In-Reply-To: <50670BE1.2000506@andric.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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:59:07 -0000 On 09/29/2012 04:55 PM, Dimitry Andric wrote: > 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. Oh, ok. I thought that the flags in CFLAGS or CXXFLAGS are added to the compiler calls. Thank you for clarifying that. > 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. Nice to know :) Thanks. --Norbert