[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
This commit is contained in:
Alex Langford 2019-05-01 21:41:40 +00:00
parent 9ef838761e
commit 4e7104bd63
3 changed files with 0 additions and 3 deletions

View File

@ -64,7 +64,6 @@ add_lldb_tool(lldb-server
LINK_LIBS
lldbBase
lldbCore
lldbHost
lldbInitialization
lldbInterpreter

View File

@ -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"

View File

@ -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"