diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-02-26 19:01:11 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-02-26 19:01:11 +0000 |
| commit | 3f60b4803a21fc7551396bade484e88caf88a050 (patch) | |
| tree | 211384c7bff947d4c2df69238a89bf77371956e7 | |
| parent | 92000e54ac5e6c938bad88216870e1f8dca8a706 (diff) | |
| download | bcm5719-llvm-3f60b4803a21fc7551396bade484e88caf88a050.tar.gz bcm5719-llvm-3f60b4803a21fc7551396bade484e88caf88a050.zip | |
disable exports from a bunch more tools, those without plugins.
llvm-svn: 65558
| -rw-r--r-- | llvm/tools/llvm-ar/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-bcanalyzer/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-dis/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-extract/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-link/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-nm/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-prof/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-ranlib/Makefile | 3 |
8 files changed, 24 insertions, 0 deletions
diff --git a/llvm/tools/llvm-ar/Makefile b/llvm/tools/llvm-ar/Makefile index ec862e67020..e4fe4e8ca39 100644 --- a/llvm/tools/llvm-ar/Makefile +++ b/llvm/tools/llvm-ar/Makefile @@ -12,6 +12,9 @@ TOOLNAME = llvm-ar LINK_COMPONENTS = archive REQUIRES_EH := 1 +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common check-local:: diff --git a/llvm/tools/llvm-bcanalyzer/Makefile b/llvm/tools/llvm-bcanalyzer/Makefile index 78732363046..251f7586064 100644 --- a/llvm/tools/llvm-bcanalyzer/Makefile +++ b/llvm/tools/llvm-bcanalyzer/Makefile @@ -12,4 +12,7 @@ TOOLNAME = llvm-bcanalyzer LINK_COMPONENTS := bitreader REQUIRES_EH := 1 +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-dis/Makefile b/llvm/tools/llvm-dis/Makefile index 6c8d0a327cc..dfd5e349812 100644 --- a/llvm/tools/llvm-dis/Makefile +++ b/llvm/tools/llvm-dis/Makefile @@ -12,4 +12,7 @@ TOOLNAME = llvm-dis LINK_COMPONENTS := bitreader REQUIRES_EH := 1 +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-extract/Makefile b/llvm/tools/llvm-extract/Makefile index 21fe37b1310..2ef88415c6a 100644 --- a/llvm/tools/llvm-extract/Makefile +++ b/llvm/tools/llvm-extract/Makefile @@ -12,4 +12,7 @@ LEVEL = ../.. TOOLNAME = llvm-extract LINK_COMPONENTS := ipo bitreader bitwriter +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-link/Makefile b/llvm/tools/llvm-link/Makefile index fdb1c196feb..ddc7a59b32a 100644 --- a/llvm/tools/llvm-link/Makefile +++ b/llvm/tools/llvm-link/Makefile @@ -11,4 +11,7 @@ LEVEL = ../.. TOOLNAME = llvm-link LINK_COMPONENTS = linker bitreader bitwriter +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-nm/Makefile b/llvm/tools/llvm-nm/Makefile index ee495bf4e9e..ecf5f8c3dcf 100644 --- a/llvm/tools/llvm-nm/Makefile +++ b/llvm/tools/llvm-nm/Makefile @@ -11,4 +11,7 @@ LEVEL = ../.. TOOLNAME = llvm-nm LINK_COMPONENTS = archive bitreader +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-prof/Makefile b/llvm/tools/llvm-prof/Makefile index d9beabb433d..3c4948e6154 100644 --- a/llvm/tools/llvm-prof/Makefile +++ b/llvm/tools/llvm-prof/Makefile @@ -12,4 +12,7 @@ TOOLNAME = llvm-prof LINK_COMPONENTS = bitreader analysis REQUIRES_EH := 1 +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-ranlib/Makefile b/llvm/tools/llvm-ranlib/Makefile index 1d315c2b82e..46a10e64466 100644 --- a/llvm/tools/llvm-ranlib/Makefile +++ b/llvm/tools/llvm-ranlib/Makefile @@ -12,4 +12,7 @@ TOOLNAME = llvm-ranlib LINK_COMPONENTS = archive REQUIRES_EH := 1 +# This tool has no plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + include $(LEVEL)/Makefile.common |

