Skip to content
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