Skip to content

Commit 0a4d2cc

Browse files
committed
Fix projects and runtimes
1 parent 115fc6a commit 0a4d2cc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

clang/cmake/caches/Release.cmake

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ endif()
5757

5858
# Don't build flang on Darwin due to:
5959
# https://github.com/llvm/llvm-project/issues/160546
60-
# Skip flang build on Windows because it makes the insaller too big.
60+
# Skip flang build on Windows because it makes the installer too big.
6161
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux")
6262
list(APPEND DEFAULT_PROJECTS "flang")
6363
endif()
@@ -182,8 +182,9 @@ if (RELEASE_LINKER_FLAGS)
182182
endif()
183183

184184
# Final Stage Config (stage2)
185-
set_final_stage_var(LLVM_ENABLE_RUNTIMES "" STRING)
186-
set_final_stage_var(LLVM_ENABLE_PROJECTS "${LLVM_RELEASE_ENABLE_PROJECTS};compiler-rt" STRING)
185+
set_final_stage_var(LLVM_ENABLE_RUNTIMES "${LLVM_RELEASE_ENABLE_RUNTIMES}" STRING)
186+
set_final_stage_var(LLVM_ENABLE_PROJECTS "${LLVM_RELEASE_ENABLE_PROJECTS}" STRING)
187+
187188
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux")
188189
set_final_stage_var(CLANG_BOLT "INSTRUMENT" STRING)
189190
endif()

0 commit comments

Comments
 (0)