8000 reorder config.toml.example options and add one missing option by guanqun · Pull Request #65408 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content
< 8000 diff-file-filter>

reorder config.toml.example options and add one missing option #65408

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

Merged
merged 7 commits into from
Oct 25, 2019
Next Next commit
add a WARNING to rust.optimize option in config.toml.example
  • Loading branch information
Guanqun Lu committed Oct 24, 2019
commit 9adea6177773b992fcdf7b1df26dd527cceba40d
7 changes: 3 additions & 4 deletions config.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,9 @@
[rust]

# Whether or not to optimize the compiler and standard library.
#
# Note: the slowness of the non optimized compiler compiling itself usually
# outweighs the time gains in not doing optimizations, therefore a
# full bootstrap takes much more time with `optimize` set to false.
# WARNING: Building with optimize = false is NOT SUPPORTED. Due to bootstrapping,
# building without optimizations takes much longer than optimizing. Further, some platforms
# fail to build without this optimization (c.f. #65352).
#optimize = true

# Indicates that the build should be configured for debugging Rust. A
Expand Down
0