mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 01:15:50 +08:00
Fix LLVM_LINK_LLVM_DYLIB build (pr35053)
Summary: r316368 broke this build when it introduced a reference to a pthread function to the Utility module. This caused cmake to generate an incorrect link line (wrong order of libs) because it did not see the dependency from Utility to the system libraries. Instead these libraries were being manually added to each final target. This changes moves the dependency management from the individual targets to the lldbUtility module, which is consistent with how llvm does it. The final targets will pick up these libraries as they will be a part of the link interface of the module. Technically, some of these dependencies could go into the host module, as that's where most of the os-specific code is, but I did not try to investigate which ones. Reviewers: zturner, sylvestre.ledru Subscribers: lldb-commits, mgorny Differential Revision: https://reviews.llvm.org/D39246 llvm-svn: 316997
This commit is contained in:
@@ -2,10 +2,6 @@ if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
|
||||
add_definitions( -DEXPORT_LIBLLDB )
|
||||
endif()
|
||||
|
||||
# Include this so that add_lldb_library() has the list of dependencies
|
||||
# for liblldb to link against
|
||||
include(${LLDB_PROJECT_ROOT}/cmake/LLDBDependencies.cmake)
|
||||
|
||||
option(LLDB_BUILD_FRAMEWORK "Build the Darwin LLDB.framework" Off)
|
||||
|
||||
if(LLDB_BUILD_FRAMEWORK AND CMAKE_VERSION VERSION_LESS 3.7)
|
||||
@@ -112,9 +108,17 @@ if (LLVM_ENABLE_WERROR)
|
||||
set_property(SOURCE ${LLDB_WRAP_PYTHON} APPEND_STRING PROPERTY COMPILE_FLAGS " -w")
|
||||
endif()
|
||||
endif()
|
||||
set_source_files_properties(${LLDB_WRAP_PYTHON} PROPERTIES GENERATED 1)
|
||||
if (CLANG_CL)
|
||||
set_property(SOURCE ${LLDB_WRAP_PYTHON} APPEND_STRING
|
||||
PROPERTY COMPILE_FLAGS " -Wno-unused-function")
|
||||
endif()
|
||||
if (LLVM_COMPILER_IS_GCC_COMPATIBLE AND
|
||||
NOT "${CMAKE_SYSTEM_NAME}" MATCHES "Darwin")
|
||||
set_property(SOURCE ${LLDB_WRAP_PYTHON} APPEND_STRING
|
||||
PROPERTY COMPILE_FLAGS " -Wno-sequence-point -Wno-cast-qual")
|
||||
endif ()
|
||||
|
||||
# This should not be part of LLDBDependencies.cmake, because we don't
|
||||
# want every single library taking a dependency on the script interpreters.
|
||||
target_link_libraries(liblldb PRIVATE
|
||||
lldbPluginScriptInterpreterNone
|
||||
lldbPluginScriptInterpreterPython
|
||||
@@ -156,7 +160,6 @@ endif()
|
||||
if (LLDB_WRAP_PYTHON)
|
||||
add_dependencies(liblldb swig_wrapper)
|
||||
endif()
|
||||
target_link_libraries(liblldb PRIVATE ${LLDB_SYSTEM_LIBS})
|
||||
|
||||
if(LLDB_BUILD_FRAMEWORK)
|
||||
file(GLOB public_headers ${LLDB_SOURCE_DIR}/include/lldb/API/*.h
|
||||
|
||||
Reference in New Issue
Block a user