From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/7541 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: building musl libc.so with gcc -flto Date: Tue, 28 Apr 2015 09:44:53 -0400 Message-ID: <20150428134453.GM17573@brightrain.aerifal.cx> References: <1429742932-6026-1-git-send-email-armccurdy@gmail.com> <20150423022309.GH6817@brightrain.aerifal.cx> <20150423094520.GA17573@brightrain.aerifal.cx> <20150428002402.GJ17573@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1430228719 7471 80.91.229.3 (28 Apr 2015 13:45:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 28 Apr 2015 13:45:19 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-7554-gllmg-musl=m.gmane.org@lists.openwall.com Tue Apr 28 15:45:14 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Yn5ow-0000kn-Mf for gllmg-musl@m.gmane.org; Tue, 28 Apr 2015 15:45:06 +0200 Original-Received: (qmail 25681 invoked by uid 550); 28 Apr 2015 13:45:05 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 25663 invoked from network); 28 Apr 2015 13:45:05 -0000 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:7541 Archived-At: On Mon, Apr 27, 2015 at 11:23:40PM -0700, Andre McCurdy wrote: > On Mon, Apr 27, 2015 at 5:24 PM, Rich Felker wrote: > > On Mon, Apr 27, 2015 at 05:16:12PM -0700, Andre McCurdy wrote: > >> > OK, it looks like the _dlstart_c symbol got removed before linking the > >> > asm. What about selectively compiling this file with -fno-lto via > >> > something like this in config.mak: > >> > > >> > src/ldso/dlstart.lo: CFLAGS += -fno-lto > >> > >> That works. Should I send a patch? > > > > Yes, but configure would need to detect support for -fno-lto and add > > it appropriately. See what's done for CFLAGS_NOSSP. I suspect the crt > > files also need -fno-lto in principle even if they're not currently > > breaking for lack of it. > > Patch sent. > > I think the crt files might be OK as they are, since the _start_c > symbol isn't being hidden? I think you'll find the exact same thing happens if you use a crt1.o produced from crt1.c for static linking with LTO. Note that on i386 (and x86_64) we still have a crt1.s which overrides crt1.c; I want to remove it at some point. Temporarily removing/renaming it yourself will allow you to test what happens with LTO on this file. Rich