diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-31 16:16:33 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-31 16:16:33 +0000 |
commit | fab7ce3f5b4060bf62659e8b58529de4156b5a2f (patch) | |
tree | 478613d49200afe992092d00c61f6fb82cec07b8 /nptl | |
parent | eca5920cd90093d8921f27bfbf7bcf54807165bb (diff) | |
download | glibc-fab7ce3f5b4060bf62659e8b58529de4156b5a2f.tar.gz glibc-fab7ce3f5b4060bf62659e8b58529de4156b5a2f.tar.xz glibc-fab7ce3f5b4060bf62659e8b58529de4156b5a2f.zip |
Link extra-libs consistently with libc and ld.so.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/Makefile | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 6e5ca4cfa0..7a9ce8e80e 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2013-05-31 Joseph Myers <joseph@codesourcery.com> + + * Makefile ($(objpfx)libpthread.so): Remove dependencies on libc + and ld.so. + 2013-05-16 Ryan S. Arnold <rsa@linux.vnet.ibm.com> * pthread_create.c: Add missing #include <stdint.h> due to uint64_t or diff --git a/nptl/Makefile b/nptl/Makefile index 6af4b37af4..7fa991b251 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -507,14 +507,6 @@ $(objpfx)libpthread.so: $(addprefix $(objpfx),$(crti-objs) $(crtn-objs)) $(objpfx)libpthread.so: +preinit += $(addprefix $(objpfx),$(crti-objs)) $(objpfx)libpthread.so: +postinit += $(addprefix $(objpfx),$(crtn-objs)) -# Depend on libc.so so a DT_NEEDED is generated in the shared objects. -# This ensures they will load libc.so for needed symbols if loaded by -# a statically-linked program that hasn't already loaded it. -# Depend on ld.so too to get proper versions of ld.so symbols. -$(objpfx)libpthread.so: $(common-objpfx)libc.so \ - $(common-objpfx)libc_nonshared.a \ - $(elfobjdir)/ld.so - # Make sure we link with the thread library. ifeq ($(build-shared),yes) $(addprefix $(objpfx), \ |