Skip to content

Commit 43101b6

Browse files
committedMay 18, 2018
experimental: share generic code for optimized builds.
1 parent 2a421f8 commit 43101b6

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed
 

‎src/bootstrap/bin/rustc.rs

+3
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@ fn main() {
296296
cmd.arg("-Dwarnings");
297297
}
298298

299+
// Always disabling sharing of generic code for build compiler artifacts
300+
cmd.arg("-Zshare-generics=off");
301+
299302
if verbose > 1 {
300303
eprintln!(
301304
"rustc command: {:?}={:?} {:?}",

‎src/librustc/ty/context.rs

+2-12
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use dep_graph::DepGraph;
1414
use dep_graph::{DepNode, DepConstructor};
1515
use errors::DiagnosticBuilder;
1616
use session::Session;
17-
use session::config::{BorrowckMode, OutputFilenames, OptLevel};
17+
use session::config::{BorrowckMode, OutputFilenames};
1818
use session::config::CrateType::*;
1919
use middle;
2020
use hir::{TraitCandidate, HirId, ItemLocalId};
@@ -1511,17 +1511,7 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
15111511
pub fn share_generics(self) -> bool {
15121512
match self.sess.opts.debugging_opts.share_generics {
15131513
Some(setting) => setting,
1514-
None => {
1515-
self.sess.opts.incremental.is_some() ||
1516-
match self.sess.opts.optimize {
1517-
OptLevel::No |
1518-
OptLevel::Less |
1519-
OptLevel::Size |
1520-
OptLevel::SizeMin => true,
1521-
OptLevel::Default |
1522-
OptLevel::Aggressive => false,
1523-
}
1524-
}
1514+
None => true,
15251515
}
15261516
}
15271517

0 commit comments

Comments
 (0)
Please sign in to comment.