diff options
| author | Alex Langford <apl@fb.com> | 2019-05-01 21:41:40 +0000 |
|---|---|---|
| committer | Alex Langford <apl@fb.com> | 2019-05-01 21:41:40 +0000 |
| commit | 4e7104bd637e161aec5e4c81ec76d4efd5ad49de (patch) | |
| tree | c8fb7e08bf415ab64e156b4747f5a5662d481b00 | |
| parent | 9ef838761e4aad12973258c18218eeb9d0e8e223 (diff) | |
| download | bcm5719-llvm-4e7104bd637e161aec5e4c81ec76d4efd5ad49de.tar.gz bcm5719-llvm-4e7104bd637e161aec5e4c81ec76d4efd5ad49de.zip | |
[lldb-server] Remove lldb-server's dependency on Core
No need to directly link against Core, as lldb-server doesn't directly
use it.
llvm-svn: 359730
| -rw-r--r-- | lldb/tools/lldb-server/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | lldb/tools/lldb-server/LLDBServerUtilities.cpp | 1 | ||||
| -rw-r--r-- | lldb/tools/lldb-server/lldb-gdbserver.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/lldb/tools/lldb-server/CMakeLists.txt b/lldb/tools/lldb-server/CMakeLists.txt index 68eef8843f0..26d4bd52e0f 100644 --- a/lldb/tools/lldb-server/CMakeLists.txt +++ b/lldb/tools/lldb-server/CMakeLists.txt @@ -64,7 +64,6 @@ add_lldb_tool(lldb-server LINK_LIBS lldbBase - lldbCore lldbHost lldbInitialization lldbInterpreter diff --git a/lldb/tools/lldb-server/LLDBServerUtilities.cpp b/lldb/tools/lldb-server/LLDBServerUtilities.cpp index 11a62959529..095d281e920 100644 --- a/lldb/tools/lldb-server/LLDBServerUtilities.cpp +++ b/lldb/tools/lldb-server/LLDBServerUtilities.cpp @@ -8,7 +8,6 @@ #include "LLDBServerUtilities.h" -#include "lldb/Core/StreamFile.h" #include "lldb/Utility/Args.h" #include "lldb/Utility/Log.h" #include "lldb/Utility/StreamString.h" diff --git a/lldb/tools/lldb-server/lldb-gdbserver.cpp b/lldb/tools/lldb-server/lldb-gdbserver.cpp index afa4487ce8b..61405fe59a2 100644 --- a/lldb/tools/lldb-server/lldb-gdbserver.cpp +++ b/lldb/tools/lldb-server/lldb-gdbserver.cpp @@ -22,7 +22,6 @@ #include "LLDBServerUtilities.h" #include "Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h" #include "Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h" -#include "lldb/Core/PluginManager.h" #include "lldb/Host/ConnectionFileDescriptor.h" #include "lldb/Host/FileSystem.h" #include "lldb/Host/HostGetOpt.h" |

