diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-12-15 11:09:41 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-12-15 11:09:41 +0000 |
commit | 978044a70e29219f2d795d97dd9397f40658c71c (patch) | |
tree | 41de4644b4a23f1d1383b41b41bd8159e58c524d /Makerules | |
parent | 14cbd70aa6ab1b1fcb77b4f2ab53e2954ea081e9 (diff) | |
download | glibc-978044a70e29219f2d795d97dd9397f40658c71c.tar.gz glibc-978044a70e29219f2d795d97dd9397f40658c71c.tar.xz glibc-978044a70e29219f2d795d97dd9397f40658c71c.zip |
2004-09-08 H.J. Lu <hongjiu.lu@intel.com>
* Makeconfig (libunwind): New. (libgcc_eh): Add $(libunwind). (gnulib): Always set to -lgcc $(libgcc_eh). (static-gnulib): Always set to -lgcc -lgcc_eh $(libunwind). (libc.so-gnulib): New. * Makerules (LDLIBS-c.so): Use $(libc.so-gnulib) instead of $(static-gnulib). * configure.in (libc_cv_cc_with_libunwind): Set to yes if gcc uses -lunwind for static binaries. * configure: Regenerated.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makerules b/Makerules index 7c6feb7c1f..5d7b24f31f 100644 --- a/Makerules +++ b/Makerules @@ -581,8 +581,8 @@ build-shlib-objlist = $(build-module-helper-objlist) \ # Also omits crti.o and crtn.o, which we do not want # since we define our own `.init' section specially. LDFLAGS-c.so = -nostdlib -nostartfiles -# But we still want to link libc.so against $(static-gnulib). -LDLIBS-c.so += $(static-gnulib) +# But we still want to link libc.so against $(libc.so-gnulib). +LDLIBS-c.so += $(libc.so-gnulib) # Give libc.so an entry point and make it directly runnable itself. LDFLAGS-c.so += -e __libc_main # If lazy relocation is disabled add the -z now flag. |