uboot-tools: add missing !BR2_STATIC_LIBS dependency for FIT signature
[buildroot-gz.git] / package / gcc / arc-2016.09-eng007 / 930-libgcc-disable-split-stack-nothreads.patch
blob7799c1286e1649e4b6f4ee8d751e619cdc9aec86
1 disable split-stack for non-thread builds
3 Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
5 diff -Nur gcc-4.8.5.orig/libgcc/config/t-stack gcc-4.8.5/libgcc/config/t-stack
6 --- gcc-4.8.5.orig/libgcc/config/t-stack 2010-10-01 21:31:49.000000000 +0200
7 +++ gcc-4.8.5/libgcc/config/t-stack 2016-03-07 05:28:12.000000000 +0100
8 @@ -1,4 +1,6 @@
9 # Makefile fragment to provide generic support for -fsplit-stack.
10 # This should be used in config.host for any host which supports
11 # -fsplit-stack.
12 +ifeq ($(enable_threads),yes)
13 LIB2ADD_ST += $(srcdir)/generic-morestack.c $(srcdir)/generic-morestack-thread.c
14 +endif