summaryrefslogtreecommitdiff
path: root/tools/opt
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2013-12-27 22:38:59 +0000
committerNico Weber <nicolasweber@gmx.de>2013-12-27 22:38:59 +0000
commit5e7c782b29d4317db9098e7482046fbbc9933054 (patch)
tree19e5a016b1bacfb6df8b1717dfd667b7ad975af0 /tools/opt
parentb2f47c6a3455a9d265e21c8ab1ca81657ff577a0 (diff)
downloadllvm-5e7c782b29d4317db9098e7482046fbbc9933054.tar.gz
llvm-5e7c782b29d4317db9098e7482046fbbc9933054.tar.bz2
llvm-5e7c782b29d4317db9098e7482046fbbc9933054.tar.xz
Strip dead code when linking by default with BFD ld (linux, ...) and ld64 (os x).
This reduces the size of clang-format from 22 MB to 1.8 MB, diagtool goes from 21 MB to 2.8 MB, libclang.so goes from 29 MB to 20 MB, etc. The size of the bin/ folder shrinks from 270 MB to 200 MB. Targets that support plugins and don't already use EXPORTED_SYMBOL_FILE (which libclang and libLTO already do) can set NO_DEAD_STRIP to opt out. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt')
-rw-r--r--tools/opt/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/opt/Makefile b/tools/opt/Makefile
index a451005574..fa2d014553 100644
--- a/tools/opt/Makefile
+++ b/tools/opt/Makefile
@@ -11,4 +11,7 @@ LEVEL := ../..
TOOLNAME := opt
LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts objcarcopts ipo vectorize all-targets
+# Support plugins.
+NO_DEAD_STRIP := 1
+
include $(LEVEL)/Makefile.common