Skip to content

Commit 219c3e6

Browse files
committed
bootstrap for parallel compiler
1 parent d71085c commit 219c3e6

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/bootstrap/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ impl Config {
11331133
set(&mut config.use_lld, rust.use_lld);
11341134
set(&mut config.lld_enabled, rust.lld);
11351135
set(&mut config.llvm_tools_enabled, rust.llvm_tools);
1136-
config.rustc_parallel = rust.parallel_compiler.unwrap_or(false);
1136+
config.rustc_parallel = rust.parallel_compiler.unwrap_or(true);
11371137
config.rustc_default_linker = rust.default_linker;
11381138
config.musl_root = rust.musl_root.map(PathBuf::from);
11391139
config.save_toolstates = rust.save_toolstates.map(PathBuf::from);

src/librustdoc/clean/utils.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -470,12 +470,6 @@ pub(crate) fn get_auto_trait_and_blanket_impls(
470470
cx: &mut DocContext<'_>,
471471
item_def_id: DefId,
472472
) -> impl Iterator<Item = Item> {
473-
// FIXME: To be removed once `parallel_compiler` bugs are fixed!
474-
// More information in <https://github.com/rust-lang/rust/pull/106930>.
475-
if cfg!(parallel_compiler) {
476-
return vec![].into_iter().chain(vec![].into_iter());
477-
}
478-
479473
let auto_impls = cx
480474
.sess()
481475
.prof

0 commit comments

Comments
 (0)