use TOOL_NO_EXPORTS, this shrinks the llvm-as binary from 1825296 to
authorChris Lattner <sabre@nondot.org>
Thu, 26 Feb 2009 18:29:42 +0000 (18:29 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Feb 2009 18:29:42 +0000 (18:29 +0000)
1662184 bytes (~10%)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65551 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-as/Makefile

index bdeeaa1e77f0503fd02a785d6e15c96d984c6f8f..ae449c479a41ce57092bf7d59f18714a7b54212d 100644 (file)
@@ -12,4 +12,7 @@ TOOLNAME = llvm-as
 LINK_COMPONENTS := asmparser bitwriter
 REQUIRES_EH := 1
 
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
 include $(LEVEL)/Makefile.common