diff options
author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-18 22:26:44 +0000 |
---|---|---|
committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-18 22:26:44 +0000 |
commit | 31da0b3dc2c8f10801df97315438764ea8836637 (patch) | |
tree | 3ef13afe8d637ad0e0e56c0280e00030d64411ec /libgcc/Makefile.in | |
parent | 7a5dfde8be63397f62bfc82cd73ebfea861b4cd6 (diff) | |
download | gcc-31da0b3dc2c8f10801df97315438764ea8836637.tar.gz |
2011-11-18 Steve Ellcey <sje@cup.hp.com>
* Makefile.in (c_flags): Set to -fno-exceptions to build libunwind.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181495 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc/Makefile.in')
-rw-r--r-- | libgcc/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in index 3a8509d118c..f0b5a0ecbd5 100644 --- a/libgcc/Makefile.in +++ b/libgcc/Makefile.in @@ -827,9 +827,10 @@ include $(iterator) endif -# Build LIBUNWIND. +# Build LIBUNWIND. Use -fno-exceptions so that the unwind library does +# not generate calls to __gcc_personality_v0. -c_flags := -fexceptions +c_flags := -fno-exceptions libunwind-objects += $(addsuffix $(objext),$(basename $(notdir $(LIBUNWIND)))) |