Summary: There is currently a way to skip the debugserver build. See how the CMake variables SKIP_DEBUGSERVER and LLDB_CODESIGN_IDENTITY are used if you're interested in that. This allows us to skip building lldb-server as well. There is another debug server called ds2 that can be used with LLDB. If you choose to use ds2, this flag is very useful because it can cut down the build time of LLDB. Differential Revision: https://reviews.llvm.org/D49282 llvm-svn: 340560
14 lines
384 B
CMake
14 lines
384 B
CMake
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_subdirectory(darwin-debug)
|
|
add_subdirectory(debugserver)
|
|
endif()
|
|
add_subdirectory(argdumper)
|
|
add_subdirectory(driver)
|
|
add_subdirectory(lldb-mi)
|
|
add_subdirectory(lldb-vscode)
|
|
if (LLDB_CAN_USE_LLDB_SERVER AND NOT SKIP_LLDB_SERVER_BUILD)
|
|
add_subdirectory(lldb-server)
|
|
endif()
|
|
add_subdirectory(intel-features)
|
|
add_subdirectory(lldb-test)
|