mailing list of musl libc
 help / color / mirror / code / Atom feed
* building musl libc.so with gcc -flto
@ 2015-04-22 22:48 Andre McCurdy
  2015-04-23  2:23 ` Rich Felker
  0 siblings, 1 reply; 16+ messages in thread
From: Andre McCurdy @ 2015-04-22 22:48 UTC (permalink / raw)
  To: musl; +Cc: Andre McCurdy

Hi all,

Below are some observations from building musl libc.so with gcc's -flto
(link time optimization) option.

1) With today's master (afbcac68), adding -flto to CFLAGS causes the
build to fail:

 | `_dlstart_c' referenced in section `.text' of /tmp/cc8ceNIy.ltrans0.ltrans.o: defined in discarded section `.text' of src/ldso/dlstart.lo (symbol from plugin)
 | collect2: error: ld returned 1 exit status
 | make: *** [lib/libc.so] Error 1

Reverting f1faa0e1 (make _dlstart_c function use hidden visibility)
seems to be a workaround.

2) With f1faa0e1 reverted, the build succeeds, but with a warning about
differing declarations for dummy_tsd and __pthread_tsd_main:

 | src/thread/pthread_create.c:169:1: warning: type of '__pthread_tsd_main' does not match original declaration
 |  weak_alias(dummy_tsd, __pthread_tsd_main);
 |  ^
 | src/thread/pthread_key_create.c:4:7: note: previously declared here
 |  void *__pthread_tsd_main[PTHREAD_KEYS_MAX] = { 0 };
 |        ^

3) Overall build times are similar, but archieving the best results
with -flto relies on manually duplicating any 'make -j' options for
the linker. Times below are from a quad core + hyperthreading system
running 'make -j8 lib/libc.so':

  original : real 0m8.501s
  -flto    : real 0m18.034s
  -flto=4  : real 0m9.885s
  -flto=8  : real 0m8.876s

4) Changes in code size seem to be minor, except when compiling with
-O3, where the code gets noticably larger (presumably due to -flto
giving a lot more scope for inlining?). Results below are from building
with gcc 4.9.2 for 32bit x86:

    text    data     bss     dec     hex filename

  536405    1416    8800  546621   8573d lib/libc.so      ( -Os )
  536324    1324    8780  546428   8567c lib/libc.so.lto  ( -Os )

  612028    1416    8928  622372   97f24 lib/libc.so      ( -O2 )
  611701    1304    9132  622137   97e39 lib/libc.so.lto  ( -O2 )

  687708    1416    8992  698116   aa704 lib/libc.so      ( -O3 )
  713704    1312    9208  724224   b0d00 lib/libc.so.lto  ( -O3 )

Andre
--


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2015-05-01 15:49 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-22 22:48 building musl libc.so with gcc -flto Andre McCurdy
2015-04-23  2:23 ` Rich Felker
2015-04-23  5:34   ` Andre McCurdy
2015-04-23  9:45     ` Rich Felker
2015-04-28  0:16       ` Andre McCurdy
2015-04-28  0:24         ` Rich Felker
2015-04-28  6:23           ` Andre McCurdy
2015-04-28 13:44             ` Rich Felker
2015-04-29  1:42               ` Andre McCurdy
2015-04-29  3:27                 ` Rich Felker
2015-05-01  5:48                   ` Andre McCurdy
2015-05-01 10:10                     ` Szabolcs Nagy
2015-05-01 15:49                       ` Rich Felker
2015-04-30 20:46   ` Andy Lutomirski
2015-04-30 23:44     ` Rich Felker
2015-05-01  6:57       ` Alexander Monakov

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).