forked from OSchip/llvm-project
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:
parent
c8604f65d3
commit
0152e73a73
|
@ -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
|
||||
|
||||
|
|
|
@ -155,7 +155,7 @@ set( CLANG_USED_LIBS
|
|||
clangFrontend
|
||||
clangLex
|
||||
clangParse
|
||||
clangRewriteCore
|
||||
clangRewrite
|
||||
clangRewriteFrontend
|
||||
clangSema
|
||||
clangSerialization
|
||||
|
|
Loading…
Reference in New Issue