[Lldb-commits] [PATCH] D12589: SystemRuntime/MacOSX no longer need ObjCRuntime header.

Bruce Mitchener via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 3 16:58:24 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL246821: SystemRuntime/MacOSX no longer need ObjCRuntime header. (authored by brucem).

Changed prior to commit:
  http://reviews.llvm.org/D12589?vs=33903&id=33992#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D12589

Files:
  lldb/trunk/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
  lldb/trunk/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt
  lldb/trunk/source/Plugins/SystemRuntime/MacOSX/Makefile

Index: lldb/trunk/source/Plugins/SystemRuntime/MacOSX/Makefile
===================================================================
--- lldb/trunk/source/Plugins/SystemRuntime/MacOSX/Makefile
+++ lldb/trunk/source/Plugins/SystemRuntime/MacOSX/Makefile
@@ -11,5 +11,4 @@
 LIBRARYNAME := lldbPluginSystemRuntimeMacOSX
 BUILD_ARCHIVE = 1
 
-CPP.Flags += -I$(PROJ_SRC_DIR)/../../LanguageRuntime/ObjC/AppleObjCRuntime
 include $(LLDB_LEVEL)/Makefile
Index: lldb/trunk/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt
===================================================================
--- lldb/trunk/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt
+++ lldb/trunk/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt
@@ -1,6 +1,3 @@
-# We depend on AppleThreadPlanStepThroughObjCTrampoline.h
-include_directories(../../LanguageRuntime/ObjC/AppleObjCRuntime)
-
 add_lldb_library(lldbPluginSystemRuntimeMacOSX
   AppleGetItemInfoHandler.cpp
   AppleGetPendingItemsHandler.cpp
Index: lldb/trunk/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
===================================================================
--- lldb/trunk/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
+++ lldb/trunk/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
@@ -13,8 +13,6 @@
 // C++ Includes
 // Other libraries and framework includes
 // Project includes
-#include "AppleThreadPlanStepThroughObjCTrampoline.h"
-
 #include "clang/AST/ASTContext.h"
 #include "clang/AST/DeclCXX.h"
 
@@ -30,6 +28,8 @@
 #include "lldb/Symbol/Symbol.h"
 #include "lldb/Target/ExecutionContext.h"
 #include "lldb/Target/Process.h"
+#include "lldb/Target/Target.h"
+#include "lldb/Target/Thread.h"
 
 using namespace lldb;
 using namespace lldb_private;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12589.33992.patch
Type: text/x-patch
Size: 1747 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150903/cd510120/attachment-0001.bin>


More information about the lldb-commits mailing list