[libcxx-commits] [libcxx] [libcxxabi] [libc++] Fix failures with GCC 14 (PR #92663)
James Y Knight via libcxx-commits
libcxx-commits at lists.llvm.org
Tue May 21 18:37:46 PDT 2024
================
@@ -1165,6 +1165,10 @@ __gxx_personality_v0(_Unwind_State state,
}
#endif
+_LIBCXXABI_FUNC_VIS void
+__cxa_call_terminate(void*) throw() {
+ std::terminate();
+}
----------------
jyknight wrote:
Agree, that sounds like a good plan (to do in a separate patch).
https://github.com/llvm/llvm-project/pull/92663
More information about the libcxx-commits
mailing list