[libcxx-commits] [libcxx] [libcxxabi] [libc++] Fix failures with GCC 14 (PR #92663)
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Sat May 18 10:56:07 PDT 2024
================
@@ -1165,6 +1165,10 @@ __gxx_personality_v0(_Unwind_State state,
}
#endif
+_LIBCXXABI_FUNC_VIS void
+__cxa_call_terminate(void*) throw() {
+ std::terminate();
+}
----------------
philnik777 wrote:
I'm sure this is complete bollocks. It would be nice if someone else could take a look at what we should do re. GCC now generating calls to `__cxa_call_terminate`.
https://github.com/llvm/llvm-project/pull/92663
More information about the libcxx-commits
mailing list