Skip to content

Commit ed89d9b

Browse files
committed
force ci-llvm by default on library and tools profiles
It's very rare for developers to need to modify LLVM, so "if-unchanged" isn't a good default since it fetches the LLVM submodule to track changes. Signed-off-by: onur-ozkan <[email protected]>
1 parent f827364 commit ed89d9b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/bootstrap/defaults/config.library.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ lto = "off"
1313

1414
[llvm]
1515
# Will download LLVM from CI if available on your platform.
16-
download-ci-llvm = "if-unchanged"
16+
# If you intend to modify `src/llvm-project`, use `"if-unchanged"` or `false` instead.
17+
download-ci-llvm = true

src/bootstrap/defaults/config.tools.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ compiler-docs = true
1717

1818
[llvm]
1919
# Will download LLVM from CI if available on your platform.
20-
download-ci-llvm = "if-unchanged"
20+
# If you intend to modify `src/llvm-project`, use `"if-unchanged"` or `false` instead.
21+
download-ci-llvm = true

0 commit comments

Comments
 (0)