Rollup merge of #84555 - jyn514:ice-backtrace, r=Mark-Simulacrum
Set `backtrace-on-ice` by default for compiler and codegen profiles If there's an ICE while bootstrapping, it's most likely because of a change to the compiler.
This commit is contained in:
commit
87b2aced4a
2 changed files with 4 additions and 0 deletions
|
@ -11,3 +11,5 @@ assertions = true
|
||||||
debug-logging = 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.
|
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
|
||||||
incremental = true
|
incremental = true
|
||||||
|
# Print backtrace on internal compiler errors during bootstrap
|
||||||
|
backtrace-on-ice = true
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
debug-logging = 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.
|
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
|
||||||
incremental = true
|
incremental = true
|
||||||
|
# Print backtrace on internal compiler errors during bootstrap
|
||||||
|
backtrace-on-ice = true
|
||||||
|
|
||||||
[llvm]
|
[llvm]
|
||||||
# Will download LLVM from CI if available on your platform.
|
# Will download LLVM from CI if available on your platform.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue