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

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