diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2013-04-11 16:32:47 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2013-04-11 16:32:47 +0000 |
commit | 9eb4b33f8530c38249f17dc2ae49ee05eaf65b1d (patch) | |
tree | ced0ca338b3ed1d25d1940db068affd44c7229d3 | |
parent | 708a44d4644dc0bbc9c0b1b7de7f539a117fe813 (diff) | |
download | bcm5719-llvm-9eb4b33f8530c38249f17dc2ae49ee05eaf65b1d.tar.gz bcm5719-llvm-9eb4b33f8530c38249f17dc2ae49ee05eaf65b1d.zip |
cmake build of lldb was complaining about missing files.
Example:
CMake Error at cmake/modules/LLVMProcessSources.cmake:89 (message):
Found unknown source file
/llvm-toolchain-3.3~svn179293.cmake/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
llvm-svn: 179295
-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
|