[clang-tools-extra] r189966 - Fix up a few straggling bits of the build system. This should fix the
Chandler Carruth
chandlerc at gmail.com
Wed Sep 4 11:03:44 PDT 2013
Author: chandlerc
Date: Wed Sep 4 13:03:44 2013
New Revision: 189966
URL: http://llvm.org/viewvc/llvm-project?rev=189966&view=rev
Log:
Fix up a few straggling bits of the build system. This should fix the
build of the clang-modernize unittest which is for some reason not being
built by default on my system (sorry about that).
Modified:
clang-tools-extra/trunk/clang-modernize/Core/Makefile
clang-tools-extra/trunk/clang-modernize/tool/Makefile
clang-tools-extra/trunk/unittests/clang-modernize/CMakeLists.txt
clang-tools-extra/trunk/unittests/clang-modernize/Makefile
Modified: clang-tools-extra/trunk/clang-modernize/Core/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-modernize/Core/Makefile?rev=189966&r1=189965&r2=189966&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-modernize/Core/Makefile (original)
+++ clang-tools-extra/trunk/clang-modernize/Core/Makefile Wed Sep 4 13:03:44 2013
@@ -7,7 +7,7 @@
#
##===----------------------------------------------------------------------===##
CLANG_LEVEL := ../../../..
-LIBRARYNAME := migrateCore
+LIBRARYNAME := modernizeCore
include $(CLANG_LEVEL)/Makefile
Modified: clang-tools-extra/trunk/clang-modernize/tool/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-modernize/tool/Makefile?rev=189966&r1=189965&r2=189966&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-modernize/tool/Makefile (original)
+++ clang-tools-extra/trunk/clang-modernize/tool/Makefile Wed Sep 4 13:03:44 2013
@@ -36,7 +36,7 @@ SOURCES += $(addprefix ../ReplaceAutoPtr
BUILT_SOURCES += $(ObjDir)/../ReplaceAutoPtr/.objdir
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc mcparser option
-USEDLIBS = migrateCore.a clangFormat.a clangApplyReplacements.a clangTooling.a clangFrontend.a \
+USEDLIBS = modernizeCore.a clangFormat.a clangApplyReplacements.a clangTooling.a clangFrontend.a \
clangSerialization.a clangDriver.a clangRewriteFrontend.a \
clangRewriteCore.a clangParse.a clangSema.a clangAnalysis.a \
clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
Modified: clang-tools-extra/trunk/unittests/clang-modernize/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clang-modernize/CMakeLists.txt?rev=189966&r1=189965&r2=189966&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clang-modernize/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/unittests/clang-modernize/CMakeLists.txt Wed Sep 4 13:03:44 2013
@@ -22,7 +22,7 @@ add_extra_unittest(Cpp11MigrateTests
)
target_link_libraries(Cpp11MigrateTests
- migrateCore
+ modernizeCore
clangFormat
clangTooling
clangBasic
Modified: clang-tools-extra/trunk/unittests/clang-modernize/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clang-modernize/Makefile?rev=189966&r1=189965&r2=189966&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clang-modernize/Makefile (original)
+++ clang-tools-extra/trunk/unittests/clang-modernize/Makefile Wed Sep 4 13:03:44 2013
@@ -13,7 +13,7 @@ include $(CLANG_LEVEL)/../../Makefile.co
TESTNAME = Cpp11MigrateTests
LINK_COMPONENTS := asmparser bitreader support MC MCParser option \
TransformUtils
-USEDLIBS = migrateCore.a clangFormat.a clangApplyReplacements.a clangTooling.a clangFrontend.a \
+USEDLIBS = modernizeCore.a clangFormat.a clangApplyReplacements.a clangTooling.a clangFrontend.a \
clangSerialization.a clangDriver.a clangRewriteFrontend.a \
clangRewriteCore.a clangParse.a clangSema.a clangAnalysis.a \
clangAST.a clangASTMatchers.a clangEdit.a clangLex.a \
More information about the cfe-commits
mailing list