diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-08-25 19:54:53 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-08-25 19:54:53 +0000 |
commit | 99655e16a6b0eafc8e18e73efe3ab27d2faf0a4a (patch) | |
tree | 1ce88ce7b68dbce9cd9d008db8234c1f52db86bb /lib/Archive | |
parent | f3e4f0e615bb2c36c4a9d60bb908e08b76025c75 (diff) |
For PR797:
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Archive')
-rw-r--r-- | lib/Archive/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Archive/Makefile b/lib/Archive/Makefile index 39712b555f..0ecf38b93f 100644 --- a/lib/Archive/Makefile +++ b/lib/Archive/Makefile @@ -9,7 +9,6 @@ LEVEL = ../../.. LIBRARYNAME = LLVMArchive -REQUIRES_EH := 1 # We only want an archive so only those modules actually used by a tool are # included. |