summaryrefslogtreecommitdiff
path: root/packages/gcc/11.2.0/0003-libgcc-disable-split-stack-nothreads.patch
diff options
context:
space:
mode:
authorAlexey Brodkin <abrodkin@synopsys.com>2021-09-15 08:15:13 (GMT)
committerAlexey Brodkin <abrodkin@synopsys.com>2021-09-15 08:18:45 (GMT)
commit24a1f120d75785854c1f0ccd5962c4a7e26a4255 (patch)
tree5f4d1ab041e4099a04b587c807653e3a1fd881a8 /packages/gcc/11.2.0/0003-libgcc-disable-split-stack-nothreads.patch
parente5aaa1ca7a7876861d3b3900251c67d280bfafdf (diff)
gcc: Refresh patches of GCC 11.2.0
As simple as: ./maintainer/manage-packages.sh --update-patches --select gcc-11.2.0 Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'packages/gcc/11.2.0/0003-libgcc-disable-split-stack-nothreads.patch')
-rw-r--r--packages/gcc/11.2.0/0003-libgcc-disable-split-stack-nothreads.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/gcc/11.2.0/0003-libgcc-disable-split-stack-nothreads.patch b/packages/gcc/11.2.0/0003-libgcc-disable-split-stack-nothreads.patch
new file mode 100644
index 0000000..df91a9f
--- /dev/null
+++ b/packages/gcc/11.2.0/0003-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