diff options
Diffstat (limited to 'devel/root/files/patch-interpreter_cling_lib_Interpreter_Interpreter.cpp')
-rw-r--r-- | devel/root/files/patch-interpreter_cling_lib_Interpreter_Interpreter.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/root/files/patch-interpreter_cling_lib_Interpreter_Interpreter.cpp b/devel/root/files/patch-interpreter_cling_lib_Interpreter_Interpreter.cpp deleted file mode 100644 index 0b87e252002c..000000000000 --- a/devel/root/files/patch-interpreter_cling_lib_Interpreter_Interpreter.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- interpreter/cling/lib/Interpreter/Interpreter.cpp.orig 2024-11-30 13:04:19 UTC -+++ interpreter/cling/lib/Interpreter/Interpreter.cpp -@@ -458,8 +458,17 @@ namespace cling { - const char* Attr = LangOpts.CPlusPlus ? " throw () " : ""; - #else - const char* LinkageCxx = Linkage; -+#ifdef __FreeBSD__ -+// atexit-like commands need 'throw()' specifier on FreeBSD 15 -+#if __FreeBSD_cc_version >= 1500000 -+ const char* Attr = " throw () "; -+#else - const char* Attr = ""; - #endif -+#else -+ const char* Attr = ""; -+#endif // __FreeBSD__ -+#endif // __GLIBC__ - - #if defined(__GLIBCXX__) - const char* cxa_atexit_is_noexcept = LangOpts.CPlusPlus ? " noexcept" : ""; |