diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-14 15:47:14 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-14 15:53:04 +0000 |
commit | e2b9d562d1e024fda6d10f0f272521bf20fa664f (patch) | |
tree | 89a0a6dc1de3e893035dbc5d72d53e11df8b36e7 /htl | |
parent | ea5cad3e37ad54b10f49a2d9f9c0feb1e285da77 (diff) | |
download | glibc-e2b9d562d1e024fda6d10f0f272521bf20fa664f.tar glibc-e2b9d562d1e024fda6d10f0f272521bf20fa664f.tar.gz glibc-e2b9d562d1e024fda6d10f0f272521bf20fa664f.tar.bz2 glibc-e2b9d562d1e024fda6d10f0f272521bf20fa664f.zip |
htl: initialize first and prevent from unloading
libc does not have codepaths for reverting the load of a libpthread.
* htl/Makefile (LDFLAGS-pthread.so): Pass -z nodelete -z initfirst to
linker.
Diffstat (limited to 'htl')
-rw-r--r-- | htl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/htl/Makefile b/htl/Makefile index c424bd512b..326a920fb3 100644 --- a/htl/Makefile +++ b/htl/Makefile @@ -205,6 +205,7 @@ $(inst_libdir)/libpthread_syms.a: $(srcdir)/libpthread_syms.a $(+force) libc-link.so = $(common-objpfx)libc.so extra-B-pthread.so = -B$(common-objpfx)htl/ +LDFLAGS-pthread.so = -Wl,--enable-new-dtags,-z,nodelete,-z,initfirst include ../Rules |