forked from OSchip/llvm-project
[CMake] Move link dependencies where they are used.
The utility library shouldn't depend on curses, libedit or python. Move curses to core, libedit to host and python to the python plugin. Differential revision: https://reviews.llvm.org/D59970 llvm-svn: 357287
This commit is contained in:
parent
dee8a14389
commit
4d63d8cf75
|
@ -1,10 +1,14 @@
|
|||
set(LLDB_CURSES_LIBS)
|
||||
set(LLDB_LIBEDIT_LIBS)
|
||||
|
||||
if (NOT LLDB_DISABLE_CURSES)
|
||||
list(APPEND LLDB_CURSES_LIBS ${CURSES_LIBRARIES})
|
||||
if(LLVM_ENABLE_TERMINFO AND HAVE_TERMINFO)
|
||||
list(APPEND LLDB_CURSES_LIBS ${TERMINFO_LIBS})
|
||||
endif()
|
||||
if (LLVM_BUILD_STATIC)
|
||||
list(APPEND LLDB_CURSES_LIBS gpm)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_lldb_library(lldbCore
|
||||
|
|
|
@ -101,7 +101,7 @@ else()
|
|||
macosx/cfcpp/CFCString.cpp
|
||||
)
|
||||
if(IOS)
|
||||
set_property(SOURCE macosx/Host.mm APPEND PROPERTY
|
||||
set_property(SOURCE macosx/Host.mm APPEND PROPERTY
|
||||
COMPILE_DEFINITIONS "NO_XPC_SERVICES=1")
|
||||
endif()
|
||||
|
||||
|
@ -158,6 +158,13 @@ if (NOT LLDB_DISABLE_LIBEDIT)
|
|||
list(APPEND EXTRA_LIBS ${libedit_LIBRARIES})
|
||||
endif()
|
||||
|
||||
if (NOT LLDB_DISABLE_LIBEDIT)
|
||||
list(APPEND LLDB_LIBEDIT_LIBS ${libedit_LIBRARIES})
|
||||
if (LLVM_BUILD_STATIC)
|
||||
list(APPEND LLDB_SYSTEM_LIBS gpm)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_lldb_library(lldbHost
|
||||
${HOST_SOURCES}
|
||||
|
||||
|
@ -165,6 +172,7 @@ add_lldb_library(lldbHost
|
|||
lldbUtility
|
||||
${EXTRA_LIBS}
|
||||
${LLDBObjCLibs}
|
||||
${LLDB_LIBEDIT_LIBS}
|
||||
|
||||
LINK_COMPONENTS
|
||||
Object
|
||||
|
|
|
@ -23,6 +23,8 @@ add_lldb_library(lldbPluginScriptInterpreterPython PLUGIN
|
|||
lldbHost
|
||||
lldbInterpreter
|
||||
lldbTarget
|
||||
${PYTHON_LIBRARY}
|
||||
|
||||
LINK_COMPONENTS
|
||||
Support
|
||||
)
|
||||
|
|
|
@ -1,44 +1,13 @@
|
|||
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 ${libedit_LIBRARIES})
|
||||
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()
|
||||
|
||||
if(Backtrace_FOUND)
|
||||
list(APPEND LLDB_SYSTEM_LIBS ${Backtrace_LIBRARY})
|
||||
endif()
|
||||
|
||||
if (NOT LLDB_DISABLE_PYTHON AND NOT LLVM_BUILD_STATIC)
|
||||
list(APPEND LLDB_SYSTEM_LIBS ${PYTHON_LIBRARY})
|
||||
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()
|
||||
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||||
list(APPEND LLDB_SYSTEM_LIBS ws2_32 rpcrt4)
|
||||
endif ()
|
||||
|
||||
if (NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB )
|
||||
list(APPEND LLDB_SYSTEM_LIBS atomic)
|
||||
endif()
|
||||
|
||||
add_lldb_library(lldbUtility
|
||||
|
|
Loading…
Reference in New Issue