[Lldb-commits] [lldb] r213181 - Fix build broken as a result of r213171.
Zachary Turner
zturner at google.com
Wed Jul 16 11:53:21 PDT 2014
Author: zturner
Date: Wed Jul 16 13:53:18 2014
New Revision: 213181
URL: http://llvm.org/viewvc/llvm-project?rev=213181&view=rev
Log:
Fix build broken as a result of r213171.
r213171 renames the 'clangRewriteCore' library to 'clangRewrite'.
This change simply updates the makefiles to reference the correct
library name.
Modified:
lldb/trunk/lib/Makefile
lldb/trunk/source/CMakeLists.txt
Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=213181&r1=213180&r2=213181&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Wed Jul 16 13:53:18 2014
@@ -83,7 +83,7 @@ USEDLIBS = lldbAPI.a \
# necessary to also link the clang rewriter libraries so vtable references can
# be resolved correctly, if we are building with GCC.
ifeq (g++,$(shell basename $(CXX) | cut -c 1-4))
- USEDLIBS += clangRewriteCore.a \
+ USEDLIBS += clangRewrite.a \
clangRewriteFrontend.a
endif
Modified: lldb/trunk/source/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/CMakeLists.txt?rev=213181&r1=213180&r2=213181&view=diff
==============================================================================
--- lldb/trunk/source/CMakeLists.txt (original)
+++ lldb/trunk/source/CMakeLists.txt Wed Jul 16 13:53:18 2014
@@ -155,7 +155,7 @@ set( CLANG_USED_LIBS
clangFrontend
clangLex
clangParse
- clangRewriteCore
+ clangRewrite
clangRewriteFrontend
clangSema
clangSerialization
More information about the lldb-commits
mailing list