We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5b43c commit f64a72dCopy full SHA for f64a72d
clang/cmake/caches/Release.cmake
@@ -55,14 +55,22 @@ set(STAGE1_RUNTIMES "compiler-rt")
55
56
if (LLVM_RELEASE_ENABLE_PGO)
57
list(APPEND STAGE1_PROJECTS "lld")
58
- set(CLANG_BOOTSTRAP_TARGETS
+ set(tmp_targets
59
generate-profdata
60
stage2-package
61
stage2-clang
62
+ stage2
63
stage2-install
64
stage2-check-all
65
stage2-check-llvm
- stage2-check-clang CACHE STRING "")
66
+ stage2-check-clang)
67
+
68
+ foreach(X IN LISTS LLVM_RELEASE_FINAL_STAGE_TARGETS)
69
+ list(APPEND tmp_targets "stage2-${X}")
70
+ endforeach()
71
+ list(REMOVE_DUPLICATES tmp_targets)
72
73
+ set(CLANG_BOOTSTRAP_TARGETS "${tmp_targets}" CACHE STRING "")
74
75
# Configuration for stage2-instrumented
76
set(BOOTSTRAP_CLANG_ENABLE_BOOTSTRAP ON CACHE STRING "")
0 commit comments