diff options
-rw-r--r-- | lldb/source/Expression/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Expression/CMakeLists.txt b/lldb/source/Expression/CMakeLists.txt index 00c44c26f28..a6ac9101347 100644 --- a/lldb/source/Expression/CMakeLists.txt +++ b/lldb/source/Expression/CMakeLists.txt @@ -18,4 +18,6 @@ add_lldb_library(lldbExpression IRExecutionUnit.cpp
IRForTarget.cpp
IRInterpreter.cpp
+ IRMemoryMap.cpp
+ Materializer.cpp
)
diff --git a/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt b/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt index bf34db0aaa8..bce7ac0d840 100644 --- a/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt +++ b/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt @@ -2,6 +2,7 @@ set(LLVM_NO_RTTI 1) add_lldb_library(lldbPluginPlatformMacOSX
PlatformDarwin.cpp
+ PlatformDarwinKernel.cpp
PlatformiOSSimulator.cpp
PlatformMacOSX.cpp
PlatformRemoteiOS.cpp
|