Skip to content

Commit

Permalink
update config.example.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
SparrowLii committed Oct 31, 2023
1 parent bf5fb76 commit 248dd14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 553,11 @@ change-id = 117435
# Whether to always use incremental compilation when building rustc
#incremental = false

# Build a multi-threaded rustc
# FIXME(#75760): Some UI tests fail when this option is enabled.
# NOTE: This option is NOT SUPPORTED. See #48685.
#parallel-compiler = false
# Build a multi-threaded rustc. This allows users to use parallel rustc
# via the unstable option `-Z threads=n`.
# Since stable/beta channels only allow using stable features,
# `parallel-compiler = false` should be set for these channels.
#parallel-compiler = true

# The default linker that will be hard-coded into the generated
# compiler for targets that don't specify a default linker explicitly
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/src/core/config/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 1112,7 @@ impl Config {

fn parse_inner(args: &[String], get_toml: impl Fn(&Path) -> TomlConfig) -> Config {
let mut flags = Flags::parse(&args);
let mut config: Config = Config::default_opts();
let mut config = Config::default_opts();

// Set flags.
config.paths = std::mem::take(&mut flags.paths);
Expand Down

0 comments on commit 248dd14

Please sign in to comment.