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.

llvm-svn: 213181
This commit is contained in:
Zachary Turner 2014-07-16 18:53:18 +00:00
parent c8604f65d3
commit 0152e73a73
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -155,7 +155,7 @@ set( CLANG_USED_LIBS
clangFrontend
clangLex
clangParse
clangRewriteCore
clangRewrite
clangRewriteFrontend
clangSema
clangSerialization