[cfe-commits] r172980 - in /cfe/trunk/tools: c-arcmt-test/Makefile c-index-test/Makefile
NAKAMURA Takumi
geek4civic at gmail.com
Sun Jan 20 06:53:50 PST 2013
Author: chapuni
Date: Sun Jan 20 08:53:49 2013
New Revision: 172980
URL: http://llvm.org/viewvc/llvm-project?rev=172980&view=rev
Log:
Add bitreader to LINK_COMPONENTS in users of libclang, c-arcmt-test and c-index-test.
They don't link cygclang.dll, but libclang.a on cygwin.
Modified:
cfe/trunk/tools/c-arcmt-test/Makefile
cfe/trunk/tools/c-index-test/Makefile
Modified: cfe/trunk/tools/c-arcmt-test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-arcmt-test/Makefile?rev=172980&r1=172979&r2=172980&view=diff
==============================================================================
--- cfe/trunk/tools/c-arcmt-test/Makefile (original)
+++ cfe/trunk/tools/c-arcmt-test/Makefile Sun Jan 20 08:53:49 2013
@@ -21,7 +21,7 @@
# LINK_COMPONENTS before including Makefile.rules
include $(CLANG_LEVEL)/../../Makefile.config
-LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
+LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc
# Note that 'USEDLIBS' must include all of the core clang libraries
# as clang.dll is unavailable on cygming yet.
Modified: cfe/trunk/tools/c-index-test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-index-test/Makefile?rev=172980&r1=172979&r2=172980&view=diff
==============================================================================
--- cfe/trunk/tools/c-index-test/Makefile (original)
+++ cfe/trunk/tools/c-index-test/Makefile Sun Jan 20 08:53:49 2013
@@ -22,7 +22,7 @@
# LINK_COMPONENTS before including Makefile.rules
include $(CLANG_LEVEL)/../../Makefile.config
-LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
+LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc
USEDLIBS = clang.a \
clangFormat.a clangRewriteCore.a \
clangFrontend.a clangDriver.a \
More information about the cfe-commits
mailing list