summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
authorShoaib Meenai <smeenai@fb.com>2022-11-29 17:34:23 -0800
committerShoaib Meenai <smeenai@fb.com>2022-11-30 11:14:37 -0800
commit6de939dbe7519f21ba774199e91f7fba9fd55cef (patch)
treebf6bc738a2b4319a80c4379d58ac9399131d20d9 /runtimes
parent5eacdcff0653e977009a727193a7f91917075d3b (diff)
downloadllvm-6de939dbe7519f21ba774199e91f7fba9fd55cef.tar.gz
[runtimes] Name stripped install targets consistently
We were previously naming sub-component stripped install targets as `install-${component}-stripped-${triple}`, whereas everywhere else names them `install-${component}-${triple}-stripped`. This inconsistency would cause issues when LLVM_RUNTIME_DISTRIBUTION_COMPONENTS contained a sub-component (which I'm addding support for next). Reviewed By: phosek, #libc, #libc_abi, ldionne Differential Revision: https://reviews.llvm.org/D138965
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/CMakeLists.txt3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt
index 688d912eccfc..df279bb6d082 100644
--- a/runtimes/CMakeLists.txt
+++ b/runtimes/CMakeLists.txt
@@ -269,9 +269,6 @@ if(SUB_COMPONENTS)
if(TARGET install-${component})
list(APPEND SUB_INSTALL_TARGETS install-${component})
endif()
- if(TARGET install-${component}-stripped)
- list(APPEND SUB_INSTALL_TARGETS install-${component}-stripped)
- endif()
endforeach()
if(LLVM_RUNTIMES_TARGET)