32ae24f
From efd5bc0715e5477318be95a76811cda0a89e8289 Mon Sep 17 00:00:00 2001
32ae24f
From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= <emilio@crisal.io>
32ae24f
Date: Fri, 4 Mar 2022 12:00:26 +0100
32ae24f
Subject: [PATCH] GLIBCXX fix for GCC 12?
32ae24f
32ae24f
---
32ae24f
 build/unix/stdc++compat/stdc++compat.cpp | 14 ++++++++++++++
32ae24f
 1 file changed, 14 insertions(+)
32ae24f
32ae24f
diff --git a/build/unix/stdc++compat/stdc++compat.cpp b/build/unix/stdc++compat/stdc++compat.cpp
32ae24f
index 0180f6bcfa998..8d7a542ff11f0 100644
32ae24f
--- a/build/unix/stdc++compat/stdc++compat.cpp
32ae24f
+++ b/build/unix/stdc++compat/stdc++compat.cpp
32ae24f
@@ -24,6 +24,7 @@
32ae24f
    GLIBCXX_3.4.27 is from gcc 10
32ae24f
    GLIBCXX_3.4.28 is from gcc 10
32ae24f
    GLIBCXX_3.4.29 is from gcc 11
32ae24f
+   GLIBCXX_3.4.30 is from gcc 12
32ae24f
 
32ae24f
 This file adds the necessary compatibility tricks to avoid symbols with
32ae24f
 version GLIBCXX_3.4.20 and bigger, keeping binary compatibility with
32ae24f
@@ -69,6 +70,19 @@ void __attribute__((weak)) __throw_bad_array_new_length() { MOZ_CRASH(); }
32ae24f
 }  // namespace std
32ae24f
 #endif
32ae24f
 
32ae24f
+#if _GLIBCXX_RELEASE >= 12
32ae24f
+namespace std {
32ae24f
+
32ae24f
+/* This avoids the GLIBCXX_3.4.30 symbol version. */
32ae24f
+void __attribute__((weak))
32ae24f
+__glibcxx_assert_fail(const char* __file, int __line, const char* __function,
32ae24f
+                      const char* __condition) {
32ae24f
+  MOZ_CRASH();
32ae24f
+}
32ae24f
+
32ae24f
+}  // namespace std
32ae24f
+#endif
32ae24f
+
32ae24f
 /* While we generally don't build with exceptions, we have some host tools
32ae24f
  * that do use them. libstdc++ from GCC 5.0 added exception constructors with
32ae24f
  * char const* argument. Older versions only have a constructor with
32ae24f
-- 
32ae24f
2.35.1
32ae24f