]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Finalize GCC 15 ABI
authorAndreas Schwab <schwab@linux-m68k.org>
Fri, 18 Apr 2025 16:09:22 +0000 (18:09 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Tue, 22 Apr 2025 09:18:22 +0000 (11:18 +0200)
Disallow adding new symbols to GLIBCXX_3.4.34 and CXXABI_1.3.16 versions.

* testsuite/util/testsuite_abi.cc (check_version): Update latestp
to use GLIBCXX_3.4.35 and CXXABI_1.3.17.

libstdc++-v3/testsuite/util/testsuite_abi.cc

index 1b4044c9518881bc9f42898b5c6acf60696fd84c..90cda2fbca83c1f143199e1e08548bed919cb63d 100644 (file)
@@ -258,8 +258,8 @@ check_version(symbol& test, bool added)
        test.version_status = symbol::incompatible;
 
       // Check that added symbols are added in the latest pre-release version.
-      bool latestp = (test.version_name == "GLIBCXX_3.4.34"
-                    || test.version_name == "CXXABI_1.3.16"
+      bool latestp = (test.version_name == "GLIBCXX_3.4.35"
+                    || test.version_name == "CXXABI_1.3.17"
                     || test.version_name == "CXXABI_FLOAT128"
                     || test.version_name == "CXXABI_TM_1");
       if (added && !latestp)