[gcc r10-7840] libstdc++: Fix PSTL tests to run correctly with newer Thread Building Blocks

Thomas Rodgers rodgertq@gcc.gnu.org
Tue Apr 21 08:08:05 GMT 2020


https://gcc.gnu.org/g:b90ff7a20b2d1c84a05cba13a2f20e6ff2260828

commit r10-7840-gb90ff7a20b2d1c84a05cba13a2f20e6ff2260828
Author: Thomas Rodgers <rodgert@appliantology.com>
Date:   Tue Apr 21 01:01:26 2020 -0700

    libstdc++: Fix PSTL tests to run correctly with newer Thread Building Blocks
    
            * testsuite/lib/libstdc++.exp: Add additional_flags=
            -DTBB_SUPRESS_DEPRECATED_MESSAGES=1 to suppress warnings when
            compiling with a newer Thread Building Blocks.

Diff:
---
 libstdc++-v3/ChangeLog                   | 6 ++++++
 libstdc++-v3/testsuite/lib/libstdc++.exp | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 0cce2b03c18..d09d114d948 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2020-04-20  Thomas Rodgers  <trodgers@redhat.com>
+
+	* testsuite/lib/libstdc++.exp: Add additional_flags=
+	-DTBB_SUPRESS_DEPRECATED_MESSAGES=1 to suppress warnings when
+	compiling with a newer Thread Building Blocks.
+
 2020-04-20  Jonathan Wakely  <jwakely@redhat.com>
 
 	* testsuite/24_iterators/istreambuf_iterator/sentinel.cc: New test.
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp
index 7f4532c55b2..16963f2edd5 100644
--- a/libstdc++-v3/testsuite/lib/libstdc++.exp
+++ b/libstdc++-v3/testsuite/lib/libstdc++.exp
@@ -1597,7 +1597,8 @@ proc check_effective_target_tbb-backend { } {
         puts $f "}"
         close $f
 
-        set lines [v3_target_compile $src $exe executable "additional_flags=-std=c++17 additional_flags=-ltbb"]
+        set lines [v3_target_compile $src $exe executable "additional_flags=-std=c++17 additional_flags=-ltbb
+                                                           additional_flags=-DTBB_SUPPRESS_DEPRECATED_MESSAGES=1"]
         file delete $src
 
         if [string match "" $lines] {


More information about the Libstdc++-cvs mailing list