bazel: Configure LLVM toolchain#3204
Merged
Merged
Conversation
Collaborator
Author
|
I'm curious how long it will take to download and configure this on the first build (and if subsequent builds are faster due to the cache). We're talking 10+ GB of unpacked data. |
Collaborator
Author
|
Hmm... this was suspiciously fast... on my laptop, it took a small eternity to download and unpack the LLVM toolchain and then recompile everything. |
Collaborator
Author
|
I tried clearing the caches and trigger a build again — it recompiled everything and so I believe this is working as intended (it's just faster than I had expected). |
qwandor
approved these changes
Jun 10, 2026
0a86045 to
081d2fa
Compare
I noticed warnings when compiling Rust code both locally and in GitHub CI: > INFO: From Compiling Rust bin mdbook-exerciser (1 file): > warning: the gold linker is deprecated and has known bugs with Rust > | > = help: consider using LLD or ld from GNU binutils instead From what I understand, this is because we haven't configured any C/C++ toolchain for Bazel and it thus picks up what is on the CI runner image. Configuring `toolchains_llvm` fixes the warnings and ensures a hermetic build.
081d2fa to
d6f41dd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I noticed warnings when compiling Rust code both locally and in GitHub CI:
From what I understands, this is because we haven't configured any C/C++ toolchain for Bazel and it thus picks up what is on the CI runner image.
Configuring
toolchains_llvmfixes the warnings and ensures a hermetic build.