[Lldb-commits] [lldb] r179295 - cmake build of lldb was complaining about missing files.

Sylvestre Ledru sylvestre at debian.org
Thu Apr 11 09:32:47 PDT 2013


Author: sylvestre
Date: Thu Apr 11 11:32:47 2013
New Revision: 179295

URL: http://llvm.org/viewvc/llvm-project?rev=179295&view=rev
Log:
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


Modified:
    lldb/trunk/source/Expression/CMakeLists.txt
    lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt

Modified: lldb/trunk/source/Expression/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/CMakeLists.txt?rev=179295&r1=179294&r2=179295&view=diff
==============================================================================
--- lldb/trunk/source/Expression/CMakeLists.txt (original)
+++ lldb/trunk/source/Expression/CMakeLists.txt Thu Apr 11 11:32:47 2013
@@ -18,4 +18,6 @@ add_lldb_library(lldbExpression
   IRExecutionUnit.cpp
   IRForTarget.cpp
   IRInterpreter.cpp
+  IRMemoryMap.cpp
+  Materializer.cpp
   )

Modified: lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt?rev=179295&r1=179294&r2=179295&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt Thu Apr 11 11:32:47 2013
@@ -2,6 +2,7 @@ set(LLVM_NO_RTTI 1)
 
 add_lldb_library(lldbPluginPlatformMacOSX
   PlatformDarwin.cpp
+  PlatformDarwinKernel.cpp
   PlatformiOSSimulator.cpp
   PlatformMacOSX.cpp
   PlatformRemoteiOS.cpp





More information about the lldb-commits mailing list