diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-21 13:05:00 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-21 13:05:00 +0000 |
commit | f87a255ee74ee92f81b5298914ff64559263fec1 (patch) | |
tree | 307c368447f34b078499cf333836cae0ce8a89e9 /tools/llvmc/plugins/Makefile | |
parent | ed765fe019e28afd017216786ef342b50ac0ebfb (diff) | |
download | external_llvm-f87a255ee74ee92f81b5298914ff64559263fec1.zip external_llvm-f87a255ee74ee92f81b5298914ff64559263fec1.tar.gz external_llvm-f87a255ee74ee92f81b5298914ff64559263fec1.tar.bz2 |
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/plugins/Makefile')
-rw-r--r-- | tools/llvmc/plugins/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvmc/plugins/Makefile b/tools/llvmc/plugins/Makefile index dab58e0..734323f 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 |