diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-25 00:21:31 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-25 00:21:31 +0000 |
| commit | 24f63176342dabc35582cb9e7574d288c7779272 (patch) | |
| tree | 8f15ede2e4db0179b4d700ce7f7c6d958fdc3189 | |
| parent | a9b3d1fc4368eb0c8138294d531bc81f18dc9333 (diff) | |
| download | bcm5719-llvm-24f63176342dabc35582cb9e7574d288c7779272.tar.gz bcm5719-llvm-24f63176342dabc35582cb9e7574d288c7779272.zip | |
[CMake] Don't try to install the system debugserver.
The custom target for the system debugserver has no install target, so
we need to remove it from the LLVM_DISTRIBUTION_COMPONENTS list.
llvm-svn: 372793
| -rw-r--r-- | lldb/test/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt index 56e0c74bc68..e6c7c57d9c2 100644 --- a/lldb/test/CMakeLists.txt +++ b/lldb/test/CMakeLists.txt @@ -101,6 +101,10 @@ if(CMAKE_HOST_APPLE) COMMAND ${CMAKE_COMMAND} -E copy_if_different ${system_debugserver_path} ${LLVM_RUNTIME_OUTPUT_INTDIR} COMMENT "Copying the system debugserver to LLDB's binaries directory for testing.") + # The custom target for the system debugserver has no install target, so we + # need to remove it from the LLVM_DISTRIBUTION_COMPONENTS list. + list(REMOVE_ITEM LLVM_DISTRIBUTION_COMPONENTS debugserver) + set(LLVM_DISTRIBUTION_COMPONENTS ${LLVM_DISTRIBUTION_COMPONENTS} PARENT_SCOPE) message(STATUS "LLDB tests use out-of-tree debugserver: ${system_debugserver_path}") list(APPEND LLDB_TEST_COMMON_ARGS --out-of-tree-debugserver) elseif(TARGET debugserver) |

