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