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 release/2.25/master updated. glibc-2.25-123-gedcf13e


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, release/2.25/master has been updated
       via  edcf13e25c1559558a6f12ff5a71d4136a39235e (commit)
      from  abf2e34ee6a9cf1b7e5afddd13971754e5c5fa82 (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=edcf13e25c1559558a6f12ff5a71d4136a39235e

commit edcf13e25c1559558a6f12ff5a71d4136a39235e
Author: Florian Weimer <fweimer@redhat.com>
Date:   Tue Jan 16 16:46:00 2018 +0100

    nptl/tst-thread-exit-clobber: Run with any C++ compiler
    
    We do not need thread_local support in the C++11 comiler, and the
    minimum GCC version for glibc has C++11 support (if it has C++ support).
    
    (cherry picked from commit 10d200dbace0ea5198006b313f40c3b884c88724)

diff --git a/ChangeLog b/ChangeLog
index 6178a89..7685075 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-01-16  Florian Weimer  <fweimer@redhat.com>
+
+	* nptl/Makefile [$(have-cxx-thread_local)] (tests-unsupported):
+	Move tst-thread-exit-clobber ...
+	[$(CXX)] (tests-unsupported): ... to here.
+
 2018-01-11  Florian Weimer  <fweimer@redhat.com>
 
 	* sysdeps/gnu/unwind-resume.c (__libgcc_s_init): Update comment
diff --git a/nptl/Makefile b/nptl/Makefile
index 5f7ba53..c263c13 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -449,11 +449,11 @@ endif
 ifeq (,$(CXX))
 # These tests require a C++ compiler and runtime.
 tests-unsupported += tst-cancel24 tst-cancel24-static tst-once5 \
-  tst-minstack-throw
+  tst-thread-exit-clobber tst-minstack-throw
 endif
 # These tests require a C++ compiler and runtime with thread_local support.
 ifneq ($(have-cxx-thread_local),yes)
-tests-unsupported += tst-thread_local1 tst-thread-exit-clobber
+tests-unsupported += tst-thread_local1
 endif
 
 include ../Rules

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

Summary of changes:
 ChangeLog     |    6 ++++++
 nptl/Makefile |    4 ++--
 2 files changed, 8 insertions(+), 2 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]