diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-16 23:00:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-16 23:00:42 +0000 |
commit | eaae8d0cdc38ab179e554a4bc3968873cf7c3c6e (patch) | |
tree | e57f2e022b63857f642ee23e04d7ec40fa684fab /llvm/tools/llvmc | |
parent | e4ed45924a0a882e16e20357a25d73b1dd0f9a4f (diff) | |
download | bcm5719-llvm-eaae8d0cdc38ab179e554a4bc3968873cf7c3c6e.tar.gz bcm5719-llvm-eaae8d0cdc38ab179e554a4bc3968873cf7c3c6e.zip |
Remove support for building LLVM libraries into "relinked"
object files. Now we always build LLVM libraries into archives (.a files).
This makes the 'make' build work more like the cmake build, among other
things. Doing this exposed some latent circular library dependencies, so
I think that llvm-config wasn't quite right for .o files anyway.
llvm-svn: 73579
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/driver/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvmc/driver/Makefile b/llvm/tools/llvmc/driver/Makefile index 3dd373a51ed..5f5ec533dd0 100644 --- a/llvm/tools/llvmc/driver/Makefile +++ b/llvm/tools/llvmc/driver/Makefile @@ -10,10 +10,10 @@ LEVEL = ../../.. TOOLNAME = $(LLVMC_BASED_DRIVER_NAME) -LLVMLIBS = CompilerDriver +LLVMLIBS = CompilerDriver.a ifneq ($(LLVMC_BUILTIN_PLUGINS),) -USEDLIBS += $(patsubst %,plugin_llvmc_%,$(LLVMC_BUILTIN_PLUGINS)) +USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS)) endif LINK_COMPONENTS = support system |