diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-01-16 16:46:00 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-01-16 21:46:37 +0100 |
commit | 10d200dbace0ea5198006b313f40c3b884c88724 (patch) | |
tree | 7386c6aa973985014e5750767561e395c0b43f30 /nptl | |
parent | 953c49cc3bb1041090281042148197ad3537c551 (diff) | |
download | glibc-10d200dbace0ea5198006b313f40c3b884c88724.tar glibc-10d200dbace0ea5198006b313f40c3b884c88724.tar.gz glibc-10d200dbace0ea5198006b313f40c3b884c88724.tar.bz2 glibc-10d200dbace0ea5198006b313f40c3b884c88724.zip |
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).
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index a11a25bbff..7940b3d26b 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -461,11 +461,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 |