Skip to content

Set deny-warnings = false in contributor defaults #77492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 6 additions & 0 deletions src/bootstrap/defaults/config.toml.codegen
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ assertions = true
debug-logging = true
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
incremental = true

[rust]
# This allows building even with warnings present.
# This is convenient especially for larger changes and refactoring,
# since it doesn't require constantly changing imports and variable names.
deny-warnings = false
6 changes: 6 additions & 0 deletions src/bootstrap/defaults/config.toml.compiler
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@
debug-logging = true
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
incremental = true

[rust]
# This allows building even with warnings present.
# This is convenient especially for larger changes and refactoring,
# since it doesn't require constantly changing imports and variable names.
deny-warnings = false
4 changes: 4 additions & 0 deletions src/bootstrap/defaults/config.toml.library
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ bench-stage = 0
[rust]
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
incremental = true
# This allows building even with warnings present.
# This is convenient especially for larger changes and refactoring,
# since it doesn't require constantly changing imports and variable names.
deny-warnings = false