[llvm-commits] [llvm] r62687 - in /llvm/trunk/tools/llvmc: driver/Makefile plugins/Makefile
Mikhail Glushenkov
foldr at codedgers.com
Wed Jan 21 05:05:00 PST 2009
Author: foldr
Date: Wed Jan 21 07:05:00 2009
New Revision: 62687
URL: http://llvm.org/viewvc/llvm-project?rev=62687&view=rev
Log:
Fix 'llvm-config --libs' output.
Change the naming scheme for llvmc plugins so that they do not appear in
'llvm-config --libs' output.
Modified:
llvm/trunk/tools/llvmc/driver/Makefile
llvm/trunk/tools/llvmc/plugins/Makefile
Modified: llvm/trunk/tools/llvmc/driver/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvmc/driver/Makefile?rev=62687&r1=62686&r2=62687&view=diff
==============================================================================
--- llvm/trunk/tools/llvmc/driver/Makefile (original)
+++ llvm/trunk/tools/llvmc/driver/Makefile Wed Jan 21 07:05:00 2009
@@ -13,7 +13,7 @@
REQUIRES_EH := 1
ifneq ($(BUILTIN_PLUGINS),)
-USEDLIBS = $(patsubst %,LLVMC%,$(BUILTIN_PLUGINS))
+USEDLIBS = $(patsubst %,plugin_llvmc_%,$(BUILTIN_PLUGINS))
endif
include $(LEVEL)/Makefile.common
Modified: llvm/trunk/tools/llvmc/plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvmc/plugins/Makefile?rev=62687&r1=62686&r2=62687&view=diff
==============================================================================
--- llvm/trunk/tools/llvmc/plugins/Makefile (original)
+++ llvm/trunk/tools/llvmc/plugins/Makefile Wed Jan 21 07:05:00 2009
@@ -21,7 +21,7 @@
LEVEL = ../../../..
-LIBRARYNAME := $(patsubst %,LLVMC%,$(LLVMC_PLUGIN))
+LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
REQUIRES_EH = 1
ifndef BUILTIN_LLVMC_PLUGIN
More information about the llvm-commits
mailing list