You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/librustdoc/lib.rs
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,14 @@ extern crate rustc_target;
61
61
externcrate rustc_trait_selection;
62
62
externcrate test;
63
63
64
+
/// See docs in https://github.com/rust-lang/rust/blob/HEAD/compiler/rustc/src/main.rs
65
+
/// and https://github.com/rust-lang/rust/pull/146627 for why we need this.
66
+
///
67
+
/// NOTE: This is loaded from the sysroot that was built with the other `rustc` crates above, for
68
+
/// some unknown reason this is more performant than building this with Cargo.
69
+
#[cfg(feature = "jemalloc")]
70
+
externcrate tikv_jemalloc_sys as _;
71
+
64
72
use std::env::{self,VarError};
65
73
use std::io::{self,IsTerminal};
66
74
use std::path::Path;
@@ -72,10 +80,6 @@ use rustc_interface::interface;
72
80
use rustc_middle::ty::TyCtxt;
73
81
use rustc_session::config::{ErrorOutputType,RustcOptGroup, make_crate_type_option};
74
82
use rustc_session::{EarlyDiagCtxt, getopts};
75
-
/// See docs in https://github.com/rust-lang/rust/blob/HEAD/compiler/rustc/src/main.rs
76
-
/// and https://github.com/rust-lang/rust/pull/146627 for why we need this `use` statement.
Copy file name to clipboardExpand all lines: src/tools/clippy/src/driver.rs
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,12 @@ extern crate rustc_session;
14
14
externcrate rustc_span;
15
15
16
16
/// See docs in https://github.com/rust-lang/rust/blob/HEAD/compiler/rustc/src/main.rs
17
-
/// and https://github.com/rust-lang/rust/pull/146627 for why we need this `use` statement.
17
+
/// and https://github.com/rust-lang/rust/pull/146627 for why we need this.
18
+
///
19
+
/// NOTE: This is loaded from the sysroot that was built with the other `rustc` crates above, for
20
+
/// some unknown reason this is more performant than building this with Cargo.
0 commit comments