]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Compile libcilkrts with -funwind-tables (PR target/60290)
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Tue, 26 Apr 2016 08:55:02 +0000 (08:55 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Tue, 26 Apr 2016 08:55:02 +0000 (08:55 +0000)
PR target/60290
* Makefile.am (GENERAL_FLAGS): Add -funwind-tables.
* Makefile.in: Regenerate.

From-SVN: r235432

libcilkrts/ChangeLog
libcilkrts/Makefile.am
libcilkrts/Makefile.in

index ed26a3a1e1b41552d02ca296b65f92b20ee7ab87..8fada8a82a65b1e6bc59457b7abd99f9effe35b9 100644 (file)
@@ -1,3 +1,9 @@
+2016-04-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       PR target/60290
+       * Makefile.am (GENERAL_FLAGS): Add -funwind-tables.
+       * Makefile.in: Regenerate.
+
 2015-11-09  Igor Zamyatin  <igor.zamyatin@intel.com>
 
        PR target/66326
index 70538a21a50646403f45eacbaaab29db4957b92d..4f944dd1a6248fbdeae14a64c2b833124c7ba7b7 100644 (file)
@@ -43,6 +43,9 @@ GENERAL_FLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/runtime -I$(top_srcdir)/
 # Enable Intel Cilk Plus extension
 GENERAL_FLAGS += -fcilkplus
 
+# Always generate unwind tables
+GENERAL_FLAGS += -funwind-tables
+
 AM_CFLAGS = $(XCFLAGS) $(GENERAL_FLAGS) -std=c99
 AM_CPPFLAGS = $(GENERAL_FLAGS)
 AM_LDFLAGS = $(XLDFLAGS)
index 629aa6a62be01c33ea71a71bee011f7e5a8a1844..a25d1c6f50ea0a3d1bf7c1ca8dc3273726d78bed 100644 (file)
@@ -371,9 +371,11 @@ ACLOCAL_AMFLAGS = -I .. -I ../config
 # GENERAL_FLAGS += -D_Cilk_spawn="" -D_Cilk_sync="" -D_Cilk_for=for
 
 # Enable Intel Cilk Plus extension
+
+# Always generate unwind tables
 GENERAL_FLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/runtime \
        -I$(top_srcdir)/runtime/config/$(config_dir) \
-       -DIN_CILK_RUNTIME=1 -fcilkplus
+       -DIN_CILK_RUNTIME=1 -fcilkplus -funwind-tables
 AM_CFLAGS = $(XCFLAGS) $(GENERAL_FLAGS) -std=c99
 AM_CPPFLAGS = $(GENERAL_FLAGS)
 AM_LDFLAGS = $(XLDFLAGS)