X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=config.toml.example;h=c14adf8ce33c7f276332bc9d0b8685c7fdf219b8;hb=5713677862b716ed65f653ed065128c98e6fcbb6;hp=361a1b00ae226abd48758c2dbacb8f3844dffba9;hpb=28405cabd50181afa6eccfd7f2ee8eb363d35594;p=rust.git diff --git a/config.toml.example b/config.toml.example index 361a1b00ae2..c14adf8ce33 100644 --- a/config.toml.example +++ b/config.toml.example @@ -301,11 +301,13 @@ # library. #debug-assertions = false -# Debuginfo level for Rust code, corresponds to the `-C debuginfo=N` option of `rustc`. +# Debuginfo level for most of Rust code, corresponds to the `-C debuginfo=N` option of `rustc`. # `0` - no debug info # `1` - line tables only # `2` - full debug info with variable and type information -# Can be overriden for specific subsets of Rust code (rustc, std, tools or tests). +# Can be overriden for specific subsets of Rust code (rustc, std or tools). +# Debuginfo for tests run with compiletest is not controlled by this option +# and needs to be enabled separately with `debuginfo-level-tests`. #debuginfo-level = if debug { 2 } else { 0 } # Debuginfo level for the compiler. @@ -318,7 +320,8 @@ #debuginfo-level-tools = debuginfo-level # Debuginfo level for the test suites run with compiletest. -#debuginfo-level-tests = debuginfo-level +# FIXME(#61117): Some tests fail when this option is enabled. +#debuginfo-level-tests = 0 # Whether or not `panic!`s generate backtraces (RUST_BACKTRACE) #backtrace = true @@ -349,7 +352,7 @@ # harness are debuggable just from logfiles. #verbose-tests = false -# Flag indicating whether tests are compiled with optimizations (the -O flag) +# Flag indicating whether tests are compiled with optimizations (the -O flag). #optimize-tests = true # Flag indicating whether codegen tests will be run or not. If you get an error