mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-29 00:58:51 +00:00
b0c0005f8a
Forward ported patches from GCC 9.2.0 to 9.3.0, refreshed to match current sources. Patch 0010-crystax.patch did not apply clean and had minor adjustments to fit new GCC 9.3.0 release. Signed-off-by: Hans-Christian Noren Egtvedt <hegtvedt@cisco.com>
18 lines
508 B
Diff
18 lines
508 B
Diff
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
|