[cfe-commits] r173124 - in /cfe/trunk/tools: c-arcmt-test/Makefile c-index-test/Makefile
NAKAMURA Takumi
geek4civic at gmail.com
Mon Jan 21 20:11:33 PST 2013
Author: chapuni
Date: Mon Jan 21 22:11:33 2013
New Revision: 173124
URL: http://llvm.org/viewvc/llvm-project?rev=173124&view=rev
Log:
libclang: Update comment about USEDLIBS in c-*-test/Makefile.
"Note that 'USEDLIBS' must include all of the core clang libraries when -static is given to linker on cygming."
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=173124&r1=173123&r2=173124&view=diff
==============================================================================
--- cfe/trunk/tools/c-arcmt-test/Makefile (original)
+++ cfe/trunk/tools/c-arcmt-test/Makefile Mon Jan 21 22:11:33 2013
@@ -24,7 +24,7 @@
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.
+# when -static is given to linker on cygming.
USEDLIBS = clang.a \
clangARCMigrate.a \
clangRewriteFrontend.a \
Modified: cfe/trunk/tools/c-index-test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-index-test/Makefile?rev=173124&r1=173123&r2=173124&view=diff
==============================================================================
--- cfe/trunk/tools/c-index-test/Makefile (original)
+++ cfe/trunk/tools/c-index-test/Makefile Mon Jan 21 22:11:33 2013
@@ -23,6 +23,9 @@
include $(CLANG_LEVEL)/../../Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc
+
+# Note that 'USEDLIBS' must include all of the core clang libraries
+# when -static is given to linker on cygming.
USEDLIBS = clang.a \
clangFormat.a clangRewriteCore.a \
clangFrontend.a clangDriver.a \
More information about the cfe-commits
mailing list