From c74198deddb2cab9f34d3a30743e6b41ac5137b8 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Tue, 25 Sep 2012 23:32:06 +0000 Subject: [PATCH] The iOSSimulator platform should create a PlatformDarwin with is_host == true so PlatformDarwin knows it can do same-host operations like process lookup. llvm-svn: 164647 --- lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp index 5097d0135475..07ef32fdc9a4 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp @@ -147,7 +147,7 @@ PlatformiOSSimulator::GetDescriptionStatic() /// Default Constructor //------------------------------------------------------------------ PlatformiOSSimulator::PlatformiOSSimulator () : - PlatformDarwin (false), + PlatformDarwin (true), m_sdk_directory () { }