[Lldb-commits] [lldb] r252182 - Revert "Do not build any of the simulator material on non-Darwin"
Chaoren Lin via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 5 10:49:02 PST 2015
Author: chaoren
Date: Thu Nov 5 12:49:02 2015
New Revision: 252182
URL: http://llvm.org/viewvc/llvm-project?rev=252182&view=rev
Log:
Revert "Do not build any of the simulator material on non-Darwin"
This breaks the cmake build on all non-darwin platforms.
This reverts commit ff6cc332dd6654620e3408d06f8f49a0c9b3cd41.
rL252179
Modified:
lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt
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=252182&r1=252181&r2=252182&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt Thu Nov 5 12:49:02 2015
@@ -1,15 +1,15 @@
list(APPEND PLUGIN_PLATFORM_MACOSX_SOURCES
+ PlatformAppleSimulator.cpp
PlatformDarwin.cpp
PlatformDarwinKernel.cpp
+ PlatformiOSSimulator.cpp
PlatformMacOSX.cpp
PlatformRemoteiOS.cpp
)
if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
list(APPEND PLUGIN_PLATFORM_MACOSX_SOURCES
- PlatformAppleSimulator.cpp
PlatformiOSSimulatorCoreSimulatorSupport.mm
- PlatformiOSSimulator.cpp
)
endif()
More information about the lldb-commits
mailing list