summaryrefslogtreecommitdiff
path: root/packages/gcc-linaro/7.4-2019.02/0009-libgcc-disable-split-stack-nothreads.patch
blob: df91a9ff219782878f7a75336ea3bc1af41b03ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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