From 73b86103b3d2734ad9f6f71a245acfa2e82797d8 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 3 Sep 2015 23:57:09 +0000 Subject: SystemRuntime/MacOSX no longer need ObjCRuntime header. Summary: The AppleGetQueuesHandler code no longer needs to include a header from the AppleObjCRuntime, so we can remove workarounds that were present in the build systems. Reviewers: clayborg, jasonmolenda Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12589 --- lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp | 4 ++-- lldb/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt | 3 --- lldb/source/Plugins/SystemRuntime/MacOSX/Makefile | 1 - 3 files changed, 2 insertions(+), 6 deletions(-) (limited to 'lldb/source/Plugins/SystemRuntime') diff --git a/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp b/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp index 1d9dac5b161..d5b1380e273 100644 --- a/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp +++ b/lldb/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; diff --git a/lldb/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt b/lldb/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt index c0f0f7ca40e..d1580cce20d 100644 --- a/lldb/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt +++ b/lldb/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 diff --git a/lldb/source/Plugins/SystemRuntime/MacOSX/Makefile b/lldb/source/Plugins/SystemRuntime/MacOSX/Makefile index 32e1d9be6b5..eebfb52073d 100644 --- a/lldb/source/Plugins/SystemRuntime/MacOSX/Makefile +++ b/lldb/source/Plugins/SystemRuntime/MacOSX/Makefile @@ -11,5 +11,4 @@ LLDB_LEVEL := ../../../.. LIBRARYNAME := lldbPluginSystemRuntimeMacOSX BUILD_ARCHIVE = 1 -CPP.Flags += -I$(PROJ_SRC_DIR)/../../LanguageRuntime/ObjC/AppleObjCRuntime include $(LLDB_LEVEL)/Makefile -- cgit v1.2.3