From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P0I4u-0006Zu-Bz for garchives@archives.gentoo.org; Mon, 27 Sep 2010 18:05:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD89CE09D7 for ; Mon, 27 Sep 2010 18:05:24 +0000 (UTC) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by pigeon.gentoo.org (Postfix) with ESMTP id F41B5E0888 for ; Mon, 27 Sep 2010 17:56:51 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P0HwY-0006YT-Vt for gentoo-amd64@lists.gentoo.org; Mon, 27 Sep 2010 19:56:50 +0200 Received: from athedsl-371734.home.otenet.gr ([79.131.4.20]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Sep 2010 19:56:50 +0200 Received: from realnc by athedsl-371734.home.otenet.gr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Sep 2010 19:56:50 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gentoo-amd64@lists.gentoo.org From: Nikos Chantziaras Subject: [gentoo-amd64] Re: glibc-2.12.1-r1 failure Date: Mon, 27 Sep 2010 20:57:15 +0300 Organization: Lucas Barks Message-ID: References: <20100927121024.395e0d1f.frank.peters@comcast.net> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-amd64@lists.gentoo.org Reply-to: gentoo-amd64@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: athedsl-371734.home.otenet.gr User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100927 Thunderbird/3.1.4 In-Reply-To: <20100927121024.395e0d1f.frank.peters@comcast.net> X-Archives-Salt: 8b408507-8ff1-4aeb-a3cd-5d42214125cf X-Archives-Hash: 3005c88e6913603d739d6d786acc93ae On 09/27/2010 07:10 PM, Frank Peters wrote: > On Mon, 27 Sep 2010 13:33:22 +0100 > "Paul Stear" wrote: > >> Hi all, >> I think I have a symbolic link problem. Any thought on how to solve this >> error. >> >> CFLAGS="-Os -march=k8 -mno-tls-direct-seg-refs -mmmx -msse3 -pipe >> -fomit-frame-pointer" >> LDFLAGS="-Wl,--as-needed,-O1 -Wl,--enable-new-dtags -Wl,--sort-common -s" >> > > See the link: > > http://forums.gentoo.org/viewtopic-p-6394901.html?sid=9a5afd453e6039723b2d0842a53c2d5c > > Basically, the advice is to simplify the CFLAGS and LDFLAGS: > > CFLAGS="-O2 --march=native --pipe" > LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,--hash-style=gnu" Wouldn't this: LDFLAGS="${LDFLAGS} -Wl,--hash-style=gnu" be more correct? --as-needed and -O1 is enabled by default anyway (${LDFLAGS} makes sure not to lose those defaults.)