File tree 2 files changed +6
-5
lines changed
src/bootstrap/src/core/config
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -553,10 +553,11 @@ change-id = 117435
553
553
# Whether to always use incremental compilation when building rustc
554
554
# incremental = false
555
555
556
- # Build a multi-threaded rustc
557
- # FIXME(#75760): Some UI tests fail when this option is enabled.
558
- # NOTE: This option is NOT SUPPORTED. See #48685.
559
- # parallel-compiler = false
556
+ # Build a multi-threaded rustc. This allows users to use parallel rustc
557
+ # via the unstable option `-Z threads=n`.
558
+ # Since stable/beta channels only allow using stable features,
559
+ # `parallel-compiler = false` should be set for these channels.
560
+ # parallel-compiler = true
560
561
561
562
# The default linker that will be hard-coded into the generated
562
563
# compiler for targets that don't specify a default linker explicitly
Original file line number Diff line number Diff line change @@ -1112,7 +1112,7 @@ impl Config {
1112
1112
1113
1113
fn parse_inner ( args : & [ String ] , get_toml : impl Fn ( & Path ) -> TomlConfig ) -> Config {
1114
1114
let mut flags = Flags :: parse ( & args) ;
1115
- let mut config: Config = Config :: default_opts ( ) ;
1115
+ let mut config = Config :: default_opts ( ) ;
1116
1116
1117
1117
// Set flags.
1118
1118
config. paths = std:: mem:: take ( & mut flags. paths ) ;
You can’t perform that action at this time.
0 commit comments