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 gentoo/2.23 updated. glibc-2.23-37-g57d20e7


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, gentoo/2.23 has been updated
       via  57d20e7914f44c12a08a2125affbbb8340256a31 (commit)
      from  fae1b8da66aae5ef731328d04c9aa1715c4bc9a4 (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=57d20e7914f44c12a08a2125affbbb8340256a31

commit 57d20e7914f44c12a08a2125affbbb8340256a31
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Mar 22 09:58:48 2016 +0100

    Fix malloc threaded tests link on non-Linux
    
    	* malloc/Makefile ($(objpfx)tst-malloc-backtrace,
    	$(objpfx)tst-malloc-thread-exit, $(objpfx)tst-malloc-thread-fail): Use
    	$(shared-thread-library) instead of hardcoding the path to libpthread.
    
    (cherry picked from commit b87e41378beca3c98ec3464d64835e66cc788497)
    (cherry picked from commit a5c2f42566460fc73755c768e8e1c59dbd5a4bb2)

diff --git a/malloc/Makefile b/malloc/Makefile
index 360288b..59d4264 100644
--- a/malloc/Makefile
+++ b/malloc/Makefile
@@ -46,12 +46,9 @@ extra-libs-others = $(extra-libs)
 libmemusage-routines = memusage
 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
 
-$(objpfx)tst-malloc-backtrace: $(common-objpfx)nptl/libpthread.so \
-			       $(common-objpfx)nptl/libpthread_nonshared.a
-$(objpfx)tst-malloc-thread-exit: $(common-objpfx)nptl/libpthread.so \
-			       $(common-objpfx)nptl/libpthread_nonshared.a
-$(objpfx)tst-malloc-thread-fail: $(common-objpfx)nptl/libpthread.so \
-			       $(common-objpfx)nptl/libpthread_nonshared.a
+$(objpfx)tst-malloc-backtrace: $(shared-thread-library)
+$(objpfx)tst-malloc-thread-exit: $(shared-thread-library)
+$(objpfx)tst-malloc-thread-fail: $(shared-thread-library)
 
 # These should be removed by `make clean'.
 extra-objs = mcheck-init.o libmcheck.a

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

Summary of changes:
 malloc/Makefile |    9 +++------
 1 files changed, 3 insertions(+), 6 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]