diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-06-06 22:21:48 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-06-07 13:08:56 +0200 |
commit | bb4809e0678fea764cc136f8d5d2a6ff6a69a522 (patch) | |
tree | e20f28ad0760a359088c3832f17a208d5ba46b24 /package/gcc/5.4.0/930-libgcc-disable-split-stack-nothreads.patch | |
parent | 211b3f8885004e897aacfa519941997798047b55 (diff) | |
download | buildroot-bb4809e0678fea764cc136f8d5d2a6ff6a69a522.tar.gz buildroot-bb4809e0678fea764cc136f8d5d2a6ff6a69a522.zip |
gcc: bump 5.x series to version 5.4.0
130-fix_build_with_gcc-6.patch is upstream so remove it.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gcc/5.4.0/930-libgcc-disable-split-stack-nothreads.patch')
-rw-r--r-- | package/gcc/5.4.0/930-libgcc-disable-split-stack-nothreads.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/gcc/5.4.0/930-libgcc-disable-split-stack-nothreads.patch b/package/gcc/5.4.0/930-libgcc-disable-split-stack-nothreads.patch new file mode 100644 index 0000000000..07f9a7395b --- /dev/null +++ b/package/gcc/5.4.0/930-libgcc-disable-split-stack-nothreads.patch @@ -0,0 +1,14 @@ +disable split-stack for non-thread builds + +Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> + +diff -Nur gcc-5.3.0.orig/libgcc/config/t-stack gcc-5.3.0/libgcc/config/t-stack +--- gcc-5.3.0.orig/libgcc/config/t-stack 2010-10-01 21:31:49.000000000 +0200 ++++ gcc-5.3.0/libgcc/config/t-stack 2016-03-07 03:25:32.000000000 +0100 +@@ -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 |