summaryrefslogtreecommitdiff
path: root/packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch
diff options
context:
space:
mode:
authorspaun2002 <spaun2002mobile@gmail.com>2021-04-28 19:54:25 (GMT)
committerspaun2002 <spaun2002mobile@gmail.com>2021-04-28 21:50:18 (GMT)
commitc4efcd7eaa5d7ba64b80dad06fe496de72ca8b96 (patch)
tree3e20904df460a2e9a5951a110c5e90f5923b41b9 /packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch
parent0528a9d744cc95aac3df40d5a1666f0a1051cf5d (diff)
Initial commit for gcc11
Signed-off-by: Nik Konyuchenko <spaun2002mobile@gmail.com>
Diffstat (limited to 'packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch')
-rw-r--r--packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch b/packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch
new file mode 100644
index 0000000..df91a9f
--- /dev/null
+++ b/packages/gcc/11.1.0/0008-libgcc-disable-split-stack-nothreads.patch
@@ -0,0 +1,17 @@
+disable split-stack for non-thread builds
+
+Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
+
+---
+ libgcc/config/t-stack | 2 ++
+ 1 file changed, 2 insertions(+)
+
+--- a/libgcc/config/t-stack
++++ b/libgcc/config/t-stack
+@@ -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