summaryrefslogtreecommitdiff
path: root/tools/llvmc
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-01-21 13:05:00 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-01-21 13:05:00 +0000
commite441b831c0ff12f86a10b60bf4fb7b7b9efa35e4 (patch)
tree307c368447f34b078499cf333836cae0ce8a89e9 /tools/llvmc
parentb6b514124d82fcd467210982389c001a7990b2e8 (diff)
downloadllvm-e441b831c0ff12f86a10b60bf4fb7b7b9efa35e4.tar.gz
llvm-e441b831c0ff12f86a10b60bf4fb7b7b9efa35e4.tar.bz2
llvm-e441b831c0ff12f86a10b60bf4fb7b7b9efa35e4.tar.xz
Fix 'llvm-config --libs' output.
Change the naming scheme for llvmc plugins so that they do not appear in 'llvm-config --libs' output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc')
-rw-r--r--tools/llvmc/driver/Makefile2
-rw-r--r--tools/llvmc/plugins/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvmc/driver/Makefile b/tools/llvmc/driver/Makefile
index d3aa2cd52a..107f0dea38 100644
--- a/tools/llvmc/driver/Makefile
+++ b/tools/llvmc/driver/Makefile
@@ -13,7 +13,7 @@ LINK_COMPONENTS = support system
REQUIRES_EH := 1
ifneq ($(BUILTIN_PLUGINS),)
-USEDLIBS = $(patsubst %,LLVMC%,$(BUILTIN_PLUGINS))
+USEDLIBS = $(patsubst %,plugin_llvmc_%,$(BUILTIN_PLUGINS))
endif
include $(LEVEL)/Makefile.common
diff --git a/tools/llvmc/plugins/Makefile b/tools/llvmc/plugins/Makefile
index dab58e0758..734323f50d 100644
--- a/tools/llvmc/plugins/Makefile
+++ b/tools/llvmc/plugins/Makefile
@@ -21,7 +21,7 @@ else # LLVMC_PLUGIN
LEVEL = ../../../..
-LIBRARYNAME := $(patsubst %,LLVMC%,$(LLVMC_PLUGIN))
+LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
REQUIRES_EH = 1
ifndef BUILTIN_LLVMC_PLUGIN