[llvm-commits] [llvm] r65551 - /llvm/trunk/tools/llvm-as/Makefile
    Chris Lattner 
    sabre at nondot.org
       
    Thu Feb 26 10:29:42 PST 2009
    
    
  
Author: lattner
Date: Thu Feb 26 12:29:42 2009
New Revision: 65551
URL: http://llvm.org/viewvc/llvm-project?rev=65551&view=rev
Log:
use TOOL_NO_EXPORTS, this shrinks the llvm-as binary from 1825296 to 
1662184 bytes (~10%)
Modified:
    llvm/trunk/tools/llvm-as/Makefile
Modified: llvm/trunk/tools/llvm-as/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-as/Makefile?rev=65551&r1=65550&r2=65551&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-as/Makefile (original)
+++ llvm/trunk/tools/llvm-as/Makefile Thu Feb 26 12:29:42 2009
@@ -12,4 +12,7 @@
 LINK_COMPONENTS := asmparser bitwriter
 REQUIRES_EH := 1
 
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
 include $(LEVEL)/Makefile.common
    
    
More information about the llvm-commits
mailing list