python-cryptography: bump to version 1.7.2
[buildroot-gz.git] / package / gcc / 4.9.4 / 930-libgcc-disable-split-stack-nothreads.patch
blob670cf8dae173563bf259c2b07f0c2fa2b0e8c279
1 disable split-stack for non-thread builds
3 Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
5 diff -Nur gcc-4.9.3.orig/libgcc/config/t-stack gcc-4.9.3/libgcc/config/t-stack
6 --- gcc-4.9.3.orig/libgcc/config/t-stack 2010-10-01 21:31:49.000000000 +0200
7 +++ gcc-4.9.3/libgcc/config/t-stack 2016-03-07 01:34:32.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