[Lldb-commits] [lldb] r252179 - Do not build any of the simulator material on non-Darwin

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 5 10:23:10 PST 2015


Author: enrico
Date: Thu Nov  5 12:23:10 2015
New Revision: 252179

URL: http://llvm.org/viewvc/llvm-project?rev=252179&view=rev
Log:
Do not build any of the simulator material on non-Darwin

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=252179&r1=252178&r2=252179&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/CMakeLists.txt Thu Nov  5 12:23:10 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