diff options
Diffstat (limited to 'gc-7.6.4-dont_disable_exceptions.patch')
-rw-r--r-- | gc-7.6.4-dont_disable_exceptions.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gc-7.6.4-dont_disable_exceptions.patch b/gc-7.6.4-dont_disable_exceptions.patch new file mode 100644 index 0000000..422b149 --- /dev/null +++ b/gc-7.6.4-dont_disable_exceptions.patch @@ -0,0 +1,12 @@ +diff -up gc-7.6.4/pthread_start.c.dont_disable_exceptions gc-7.6.4/pthread_start.c +--- gc-7.6.4/pthread_start.c.dont_disable_exceptions 2018-01-26 07:16:17.000000000 -0600 ++++ gc-7.6.4/pthread_start.c 2018-03-14 09:21:34.263477197 -0500 +@@ -22,7 +22,7 @@ + /* case at the top of the file. FIXME: it's still unclear whether this */ + /* will actually cause the exit handler to be invoked last when */ + /* thread_exit is called (and if -fexceptions is used). */ +-#if defined(__GNUC__) && defined(__linux__) ++#if 0 && defined(__GNUC__) && defined(__linux__) + /* We undefine __EXCEPTIONS to avoid using GCC __cleanup__ attribute. */ + /* The current NPTL implementation of pthread_cleanup_push uses */ + /* __cleanup__ attribute when __EXCEPTIONS is defined (-fexceptions). */ |