summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-06-23 20:59:29 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-06-23 20:59:47 +0200
commit026cb095e0b519b142d89839c751b8becf846ffa (patch)
treef10d7de60bfbfb7d5c5522cfbe71aca9a359093e /toolchain
parentea3a0e4207dc51ce45cfc6771080e2fbe2066a0b (diff)
gcc: add nothread support patch
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/gcc/patches/7.1.0/disable-split-stack-nothread.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/toolchain/gcc/patches/7.1.0/disable-split-stack-nothread.patch b/toolchain/gcc/patches/7.1.0/disable-split-stack-nothread.patch
new file mode 100644
index 000000000..0038d7573
--- /dev/null
+++ b/toolchain/gcc/patches/7.1.0/disable-split-stack-nothread.patch
@@ -0,0 +1,10 @@
+diff -Nur gcc-7.1.0.orig/libgcc/config/t-stack gcc-7.1.0/libgcc/config/t-stack
+--- gcc-7.1.0.orig/libgcc/config/t-stack 2010-10-01 21:31:49.000000000 +0200
++++ gcc-7.1.0/libgcc/config/t-stack 2017-06-23 19:55:25.215965555 +0200
+@@ -1,4 +1,6 @@
+ # Makefile fragment to provide generic support for -fsplit-stack.
+ # This should be used in config.host for any host which supports
+ # -fsplit-stack.
++ifeq ($(enable_threads),yes)
+ LIB2ADD_ST += $(srcdir)/generic-morestack.c $(srcdir)/generic-morestack-thread.c
++endif