mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 23:49:22 +08:00
Summary: The Args class is used in plenty of places besides the command interpreter (e.g., anything requiring an argc+argv combo, such as when launching a process), so it needs to be in a lower layer. Now that the class has no external dependencies, it can be moved down to the Utility module. This removes the last (direct) dependency from the Host module to Interpreter, so I remove the Interpreter module from Host's dependency list. Reviewers: zturner, jingham, davide Subscribers: mgorny, lldb-commits Differential Revision: https://reviews.llvm.org/D45480 llvm-svn: 330200
92 lines
1.8 KiB
CMake
92 lines
1.8 KiB
CMake
set(LLDB_SYSTEM_LIBS)
|
|
|
|
# Windows-only libraries
|
|
if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
|
|
list(APPEND LLDB_SYSTEM_LIBS
|
|
ws2_32
|
|
rpcrt4
|
|
)
|
|
endif ()
|
|
|
|
if (NOT LLDB_DISABLE_LIBEDIT)
|
|
list(APPEND LLDB_SYSTEM_LIBS edit)
|
|
endif()
|
|
if (NOT LLDB_DISABLE_CURSES)
|
|
list(APPEND LLDB_SYSTEM_LIBS ${CURSES_LIBRARIES})
|
|
if(LLVM_ENABLE_TERMINFO AND HAVE_TERMINFO)
|
|
list(APPEND LLDB_SYSTEM_LIBS ${TERMINFO_LIBS})
|
|
endif()
|
|
endif()
|
|
|
|
if (NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB )
|
|
list(APPEND LLDB_SYSTEM_LIBS atomic)
|
|
endif()
|
|
|
|
list(APPEND LLDB_SYSTEM_LIBS ${Backtrace_LIBRARY})
|
|
|
|
if (NOT LLDB_DISABLE_PYTHON AND NOT LLVM_BUILD_STATIC)
|
|
list(APPEND LLDB_SYSTEM_LIBS ${PYTHON_LIBRARIES})
|
|
endif()
|
|
|
|
list(APPEND LLDB_SYSTEM_LIBS ${system_libs})
|
|
|
|
if (LLVM_BUILD_STATIC)
|
|
if (NOT LLDB_DISABLE_PYTHON)
|
|
list(APPEND LLDB_SYSTEM_LIBS python2.7 util)
|
|
endif()
|
|
if (NOT LLDB_DISABLE_CURSES)
|
|
list(APPEND LLDB_SYSTEM_LIBS gpm)
|
|
endif()
|
|
endif()
|
|
|
|
add_lldb_library(lldbUtility
|
|
ArchSpec.cpp
|
|
Args.cpp
|
|
Baton.cpp
|
|
Connection.cpp
|
|
ConstString.cpp
|
|
DataBufferHeap.cpp
|
|
DataBufferLLVM.cpp
|
|
DataEncoder.cpp
|
|
DataExtractor.cpp
|
|
Environment.cpp
|
|
FastDemangle.cpp
|
|
FileSpec.cpp
|
|
History.cpp
|
|
IOObject.cpp
|
|
JSON.cpp
|
|
LLDBAssert.cpp
|
|
Log.cpp
|
|
Logging.cpp
|
|
NameMatches.cpp
|
|
Range.cpp
|
|
RegularExpression.cpp
|
|
SelectHelper.cpp
|
|
SharingPtr.cpp
|
|
Status.cpp
|
|
Stream.cpp
|
|
StreamCallback.cpp
|
|
StreamGDBRemote.cpp
|
|
StreamString.cpp
|
|
StringExtractor.cpp
|
|
StringExtractorGDBRemote.cpp
|
|
StringLexer.cpp
|
|
StringList.cpp
|
|
StructuredData.cpp
|
|
TildeExpressionResolver.cpp
|
|
Timer.cpp
|
|
UserID.cpp
|
|
UriParser.cpp
|
|
UUID.cpp
|
|
VASprintf.cpp
|
|
VMRange.cpp
|
|
|
|
LINK_LIBS
|
|
${LLDB_SYSTEM_LIBS}
|
|
# lldbUtility does not depend on other LLDB libraries
|
|
|
|
LINK_COMPONENTS
|
|
BinaryFormat
|
|
Support
|
|
)
|