[Lldb-commits] [lldb] r215119 - Fix the build broken as a result of deleting jit from LLVM.
Zachary Turner
zturner at google.com
Thu Aug 7 09:50:46 PDT 2014
Author: zturner
Date: Thu Aug 7 11:50:45 2014
New Revision: 215119
URL: http://llvm.org/viewvc/llvm-project?rev=215119&view=rev
Log:
Fix the build broken as a result of deleting jit from LLVM.
Modified:
lldb/trunk/lib/Makefile
lldb/trunk/source/CMakeLists.txt
lldb/trunk/source/Expression/IRExecutionUnit.cpp
Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=215119&r1=215118&r2=215119&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Thu Aug 7 11:50:45 2014
@@ -92,7 +92,7 @@ endif
include $(LLDB_LEVEL)/../../Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \
- instrumentation ipo irreader selectiondag jit mc mcjit \
+ instrumentation ipo irreader selectiondag mc mcjit \
linker option
ifeq ($(HOST_OS),Darwin)
Modified: lldb/trunk/source/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/CMakeLists.txt?rev=215119&r1=215118&r2=215119&view=diff
==============================================================================
--- lldb/trunk/source/CMakeLists.txt (original)
+++ lldb/trunk/source/CMakeLists.txt Thu Aug 7 11:50:45 2014
@@ -181,7 +181,6 @@ list(APPEND LLDB_SYSTEM_LIBS ${system_li
set( LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
- jit
interpreter
asmparser
bitreader
Modified: lldb/trunk/source/Expression/IRExecutionUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/IRExecutionUnit.cpp?rev=215119&r1=215118&r2=215119&view=diff
==============================================================================
--- lldb/trunk/source/Expression/IRExecutionUnit.cpp (original)
+++ lldb/trunk/source/Expression/IRExecutionUnit.cpp Thu Aug 7 11:50:45 2014
@@ -302,9 +302,7 @@ IRExecutionUnit::GetRunnableInfo(Error &
.setRelocationModel(relocModel)
.setJITMemoryManager(new MemoryManager(*this))
.setOptLevel(llvm::CodeGenOpt::Less)
- .setAllocateGVsWithCode(true)
- .setCodeModel(codeModel)
- .setUseMCJIT(true);
+ .setCodeModel(codeModel);
llvm::StringRef mArch;
llvm::StringRef mCPU;
More information about the lldb-commits
mailing list