From 0152e73a7356fd767f5476289e12aa24f7b06b1c Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 16 Jul 2014 18:53:18 +0000 Subject: [PATCH] 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 --- lldb/lib/Makefile | 2 +- lldb/source/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index ff54b69..6797c22 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -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 diff --git a/lldb/source/CMakeLists.txt b/lldb/source/CMakeLists.txt index 260fec9..1b464a3 100644 --- a/lldb/source/CMakeLists.txt +++ b/lldb/source/CMakeLists.txt @@ -155,7 +155,7 @@ set( CLANG_USED_LIBS clangFrontend clangLex clangParse - clangRewriteCore + clangRewrite clangRewriteFrontend clangSema clangSerialization -- 2.7.4