From dbf7b1c6e13be9ec10514b498b3b0e29d6b9324b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 26 Feb 2009 18:29:42 +0000 Subject: [PATCH] use TOOL_NO_EXPORTS, this shrinks the llvm-as binary from 1825296 to 1662184 bytes (~10%) llvm-svn: 65551 --- llvm/tools/llvm-as/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile index bdeeaa1e77f0..ae449c479a41 100644 --- a/llvm/tools/llvm-as/Makefile +++ b/llvm/tools/llvm-as/Makefile @@ -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