This includes the lldb-dap executable in the MacOS and Linux distributions of Swift. Currently there is a commit in the Apple repo to do this for just MacOS https://github.com/apple/llvm-project/pull/8176. This PR extends this to both Linux and MacOS and brings the change upstream. @JDevlieghere @adrian-prantl
12 lines
263 B
CMake
12 lines
263 B
CMake
include(${CMAKE_CURRENT_LIST_DIR}/Apple-lldb-base.cmake)
|
|
set(LLVM_ENABLE_EXPORTED_SYMBOLS_IN_EXECUTABLES ON CACHE BOOL "" FORCE)
|
|
|
|
set(LLVM_DISTRIBUTION_COMPONENTS
|
|
lldb
|
|
liblldb
|
|
lldb-argdumper
|
|
lldb-dap
|
|
lldb-server
|
|
lldb-python-scripts
|
|
CACHE STRING "")
|