summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvmc
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-16 23:00:42 +0000
committerChris Lattner <sabre@nondot.org>2009-06-16 23:00:42 +0000
commiteaae8d0cdc38ab179e554a4bc3968873cf7c3c6e (patch)
treee57f2e022b63857f642ee23e04d7ec40fa684fab /llvm/tools/llvmc
parente4ed45924a0a882e16e20357a25d73b1dd0f9a4f (diff)
downloadbcm5719-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/Makefile4
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
OpenPOWER on IntegriCloud