mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-03 07:38:57 +00:00
fd2f0cb170
Summary: This patch removes the over-specified dependencies from LLDBDependencies and instead relies on the dependencies as expressed in each library and tool. This also removes the library looping in favor of allowing CMake to do its thing. I've tested this patch on Darwin, and found no issues, but since linker semantics vary by system I'll also work on testing it on other platforms too. Help testing would be greatly appreciated. Reviewers: labath, zturner Subscribers: danalbert, srhines, mgorny, jgosnell, lldb-commits Differential Revision: https://reviews.llvm.org/D29352 llvm-svn: 294515
34 lines
843 B
CMake
34 lines
843 B
CMake
if ( CMAKE_SYSTEM_NAME MATCHES "Darwin" )
|
|
list(APPEND EXTRA_PLUGINS lldbPluginObjectFileMachO)
|
|
endif()
|
|
|
|
if ( CMAKE_SYSTEM_NAME MATCHES "Linux|Android|FreeBSD|NetBSD" )
|
|
list(APPEND EXTRA_PLUGINS lldbPluginProcessPOSIX)
|
|
endif()
|
|
|
|
if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
|
|
list(APPEND EXTRA_PLUGINS lldbPluginProcessWindowsCommon)
|
|
endif ()
|
|
|
|
add_lldb_library(lldbInitialization
|
|
SystemInitializerCommon.cpp
|
|
SystemInitializer.cpp
|
|
SystemLifetimeManager.cpp
|
|
|
|
LINK_LIBS
|
|
lldbCore
|
|
lldbHost
|
|
lldbPluginInstructionARM
|
|
lldbPluginInstructionMIPS
|
|
lldbPluginInstructionMIPS64
|
|
lldbPluginObjectContainerBSDArchive
|
|
lldbPluginObjectContainerMachOArchive
|
|
lldbPluginObjectFileELF
|
|
lldbPluginObjectFilePECOFF
|
|
lldbPluginProcessGDBRemote
|
|
${EXTRA_PLUGINS}
|
|
${LLDB_SYSTEM_LIBS}
|
|
LINK_COMPONENTS
|
|
Support
|
|
)
|