Skip to content

Commit

Permalink
SystemRuntime/MacOSX no longer need ObjCRuntime header.
Browse files Browse the repository at this point in the history
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

llvm-svn: 246821
  • Loading branch information
waywardmonkeys committed Sep 3, 2015
1 parent 0f4873d commit cfe7d6c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
Expand Up @@ -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"

Expand All @@ -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;
Expand Down
3 changes: 0 additions & 3 deletions 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
Expand Down
1 change: 0 additions & 1 deletion lldb/source/Plugins/SystemRuntime/MacOSX/Makefile
Expand Up @@ -11,5 +11,4 @@ LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginSystemRuntimeMacOSX
BUILD_ARCHIVE = 1

CPP.Flags += -I$(PROJ_SRC_DIR)/../../LanguageRuntime/ObjC/AppleObjCRuntime
include $(LLDB_LEVEL)/Makefile

0 comments on commit cfe7d6c

Please sign in to comment.