Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/bootstrap/defaults/bootstrap.compiler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ frame-pointers = true
# e.g. check that it builds locally and check the baseline behavior of a
# compiler built from latest `master` commit.
download-rustc = false
# Don't fail compilation when there are warnings.
deny-warnings = false

[llvm]
# Having this set to true disrupts compiler development workflows for people who use `llvm.download-ci-llvm = true`
Expand Down
2 changes: 2 additions & 0 deletions src/bootstrap/defaults/bootstrap.dist.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ channel = "auto-detect"
download-rustc = false
# Build the llvm-bitcode-linker
llvm-bitcode-linker = true
# Fail compilation when there are warnings.
deny-warnings = true

[dist]
# Use better compression when preparing tarballs.
Expand Down
2 changes: 2 additions & 0 deletions src/bootstrap/defaults/bootstrap.library.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ lto = "off"
# library development by skipping compiler builds.
# FIXME: download-rustc is currently broken: https://github.com/rust-lang/rust/issues/142505
download-rustc = false
# Don't fail compilation when there are warnings.
deny-warnings = false

[llvm]
# Will download LLVM from CI if available on your platform.
Expand Down
2 changes: 2 additions & 0 deletions src/bootstrap/defaults/bootstrap.tools.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ incremental = true
# Most commonly, tools contributors do not need to modify the compiler, so
# downloading a CI rustc is a good default for tools profile.
download-rustc = "if-unchanged"
# Don't fail compilation when there are warnings.
deny-warnings = false

[build]
# cargo and clippy tests don't pass on stage 1
Expand Down
Loading