[Lldb-commits] [lldb] r164647 - /lldb/trunk/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp

Jason Molenda jmolenda at apple.com
Tue Sep 25 16:32:06 PDT 2012


Author: jmolenda
Date: Tue Sep 25 18:32:06 2012
New Revision: 164647

URL: http://llvm.org/viewvc/llvm-project?rev=164647&view=rev
Log:
The iOSSimulator platform should create a PlatformDarwin with 
is_host == true so PlatformDarwin knows it can do same-host
operations like process lookup.  <rdar://problem/12296249> 


Modified:
    lldb/trunk/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp

Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp?rev=164647&r1=164646&r2=164647&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp Tue Sep 25 18:32:06 2012
@@ -147,7 +147,7 @@
 /// Default Constructor
 //------------------------------------------------------------------
 PlatformiOSSimulator::PlatformiOSSimulator () :
-    PlatformDarwin (false),
+    PlatformDarwin (true),
     m_sdk_directory ()
 {
 }





More information about the lldb-commits mailing list