[Lldb-commits] [lldb] r334697 - Fix includes in PlatformAppleSimulator.h

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 14 02:08:54 PDT 2018


Author: labath
Date: Thu Jun 14 02:08:54 2018
New Revision: 334697

URL: http://llvm.org/viewvc/llvm-project?rev=334697&view=rev
Log:
Fix includes in PlatformAppleSimulator.h

This unbreaks the cmake build. Other plugins also use the include paths
starting with Plugins/..., so I am hoping this will work for the xcode build
too.

Modified:
    lldb/trunk/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h

Modified: lldb/trunk/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h?rev=334697&r1=334696&r2=334697&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h (original)
+++ lldb/trunk/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h Thu Jun 14 02:08:54 2018
@@ -16,8 +16,8 @@
 
 // Other libraries and framework includes
 // Project includes
-#include "PlatformDarwin.h"
-#include "PlatformiOSSimulatorCoreSimulatorSupport.h"
+#include "Plugins/Platform/MacOSX/PlatformDarwin.h"
+#include "Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.h"
 #include "lldb/Utility/FileSpec.h"
 
 #include "llvm/ADT/Optional.h"




More information about the lldb-commits mailing list