This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-147-g1efe135


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  1efe13586124f536437ee031626f94a2cf2a502a (commit)
      from  a527f09cd1475dbc465ad476f0604951fa3590d7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=1efe13586124f536437ee031626f94a2cf2a502a

commit 1efe13586124f536437ee031626f94a2cf2a502a
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Mar 1 14:38:00 2018 +0100

    nptl: Turn libpthread.so into a symbolic link to the real DSO
    
    The linker script is no longer needed.

diff --git a/ChangeLog b/ChangeLog
index 53c8e9b..1992ccd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-03-01  Florian Weimer  <fweimer@redhat.com>
+
+	* nptl/Makefile (install-lib-ldscripts): Remove.
+	(install): Remove rule.
+	($(inst_libdir)/libpthread.so): Likewise.
+
 2018-03-01  Mike FABIAN  <mfabian@redhat.com>
 
 	[BZ #22896]
diff --git a/nptl/Makefile b/nptl/Makefile
index e18f9a6..94be92c 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -26,7 +26,6 @@ headers := pthread.h semaphore.h bits/semaphore.h
 
 extra-libs := libpthread
 extra-libs-others := $(extra-libs)
-install-lib-ldscripts := libpthread.so
 
 routines = alloca_cutoff forward libc-lowlevellock libc-cancellation \
 	   libc-cleanup libc_pthread_init libc_multiple_threads \
@@ -473,24 +472,6 @@ ifeq (yes,$(build-shared))
 # Make sure these things are built in the `make lib' pass so they can be used
 # to run programs during the `make others' pass.
 lib-noranlib: $(addprefix $(objpfx),$(extra-objs))
-
-# What we install as libpthread.so for programs to link against is in fact a
-# link script.  It contains references for the various libraries we need.
-# We need to use absolute paths since otherwise local copies (if they exist)
-# of the files are taken by the linker.
-install: $(inst_libdir)/libpthread.so
-
-$(inst_libdir)/libpthread.so: $(common-objpfx)format.lds \
-			      $(objpfx)libpthread.so$(libpthread.so-version) \
-			      $(+force)
-	(echo '/* GNU ld script';\
-	 echo '   Use the shared library, but some functions are only in';\
-	 echo '   the static library, so try that secondarily.  */';\
-	 cat $<; \
-	 echo 'GROUP ( $(slibdir)/libpthread.so$(libpthread.so-version)' \
-	      ')' \
-	) > $@.new
-	mv -f $@.new $@
 endif
 
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    6 ++++++
 nptl/Makefile |   19 -------------------
 2 files changed, 6 insertions(+), 19 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]