Blame SOURCES/0013-Rename-__CXXSTDLIB_SO_VERSION__-to-__LIBSTDCXX_SO_VE.patch

a46658
From c922a56d4461c9e4ca2af07ecccb3626b99a35ae Mon Sep 17 00:00:00 2001
a46658
From: David Malcolm <dmalcolm@redhat.com>
a46658
Date: Thu, 2 Sep 2021 11:44:37 -0400
a46658
Subject: [PATCH 13/17] Rename __CXXSTDLIB_SO_VERSION__ to
a46658
 __LIBSTDCXX_SO_VERSION and only use major version
a46658
a46658
---
a46658
 .../testsuite/22_locale/messages/13631.cc      |  4 ++--
a46658
 libstdc++-v3/testsuite/lib/dts.exp             | 18 +++++-------------
a46658
 libstdc++-v3/testsuite/lib/libstdc++.exp       |  4 ++--
a46658
 3 files changed, 9 insertions(+), 17 deletions(-)
a46658
a46658
diff --git a/libstdc++-v3/testsuite/22_locale/messages/13631.cc b/libstdc++-v3/testsuite/22_locale/messages/13631.cc
a46658
index 5b20df382..f4c5eb7a2 100644
a46658
--- a/libstdc++-v3/testsuite/22_locale/messages/13631.cc
a46658
+++ b/libstdc++-v3/testsuite/22_locale/messages/13631.cc
a46658
@@ -51,7 +51,7 @@ void test01()
a46658
   msgs_facet.close(msgs);
a46658
 
a46658
   // Fixed upstream in GCC 5
a46658
-#if __CXXSTDLIB_SO_VERSION__ >= 501000
a46658
+#if __LIBSTDCXX_SO_VERSION >= 5
a46658
   VERIFY( translation1 == translation2 );
a46658
 #endif
a46658
 }
a46658
@@ -77,7 +77,7 @@ void test02()
a46658
   // Without a real translation this test doesn't mean anything:
a46658
 
a46658
   // Fixed upstream in GCC 5
a46658
-#if __CXXSTDLIB_SO_VERSION__ >= 501000
a46658
+#if __LIBSTDCXX_SO_VERSION >= 5
a46658
   VERIFY( !translation1.empty() );
a46658
   VERIFY( translation1 != msgid );
a46658
 #endif
a46658
diff --git a/libstdc++-v3/testsuite/lib/dts.exp b/libstdc++-v3/testsuite/lib/dts.exp
a46658
index dc5cf3e95..60f94bd6d 100644
a46658
--- a/libstdc++-v3/testsuite/lib/dts.exp
a46658
+++ b/libstdc++-v3/testsuite/lib/dts.exp
a46658
@@ -1,15 +1,10 @@
a46658
-# For DTS testing, generate a number expressing the
a46658
-# system version of libstdc++.so
a46658
-#
a46658
-# Generate a version number equivalent to
a46658
-#  #define GCC_VERSION (__GNUC__ * 10000 \
a46658
-#                       + __GNUC_MINOR__ * 100 \
a46658
-#                       + __GNUC_PATCHLEVEL__)
a46658
+# For DTS testing, get the major version of the
a46658
+# system libstdc++.so
a46658
 #
a46658
 # For example, given an underlying version of gcc 4.8.5
a46658
-# this function will return 408050.
a46658
+# this function will return 4
a46658
 
a46658
-proc get_dts_base_version { } {
a46658
+proc get_dts_base_major_version { } {
a46658
 
a46658
     # Invoke /usr/bin/gcc to get at the underlying GCC version
a46658
     # in dotted form (e.g. "4.8.5").
a46658
@@ -24,8 +19,5 @@ proc get_dts_base_version { } {
a46658
     verbose "minor: '$minor'" 2
a46658
     verbose "patchlevel: '$patchlevel'" 2
a46658
 
a46658
-    set base_gcc_version [expr (($major * 10000) + ($minor * 100)  + $patchlevel)]
a46658
-    verbose "base_gcc_version: '$base_gcc_version'" 2
a46658
-
a46658
-    return $base_gcc_version
a46658
+    return $major
a46658
 }
a46658
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp
a46658
index 5e4b32f76..297485b19 100644
a46658
--- a/libstdc++-v3/testsuite/lib/libstdc++.exp
a46658
+++ b/libstdc++-v3/testsuite/lib/libstdc++.exp
a46658
@@ -326,8 +326,8 @@ proc libstdc++_init { testfile } {
a46658
 
a46658
     # For DTS testing, expose the system version of libstdc++.so as
a46658
     # a preprocessor define.
a46658
-    set base_gcc_version [get_dts_base_version]
a46658
-    set cxxflags "$cxxflags -D__CXXSTDLIB_SO_VERSION__=$base_gcc_version"
a46658
+    set base_gcc_version [get_dts_base_major_version]
a46658
+    set cxxflags "$cxxflags -D__LIBSTDCXX_SO_VERSION=$base_gcc_version"
a46658
 
a46658
     # If a PCH file is available, use it.  We must delay performing
a46658
     # this check until $cxx and such have been initialized because we
a46658
-- 
a46658
2.31.1
a46658