Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 90463a6

Browse files
committedMay 17, 2018
Auto merge of #50629 - Mark-Simulacrum:stage-step, r=alexcrichton
Switch to bootstrapping from 1.27 It's possible the Float trait could be removed from core, but I couldn't tell whether it was intended to be removed or not. @SimonSapin may be able to comment more here; we can presumably also do that in a follow up PR as this one is already quite large.
2 parents dbd10f8 + a22af69 commit 90463a6

File tree

43 files changed

+442
-1521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+442
-1521
lines changed
 

‎src/bootstrap/builder.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -584,11 +584,10 @@ impl<'a> Builder<'a> {
584584
cargo.env("RUST_CHECK", "1");
585585
}
586586

587-
// If we were invoked from `make` then that's already got a jobserver
588-
// set up for us so no need to tell Cargo about jobs all over again.
589-
if env::var_os("MAKEFLAGS").is_none() && env::var_os("MFLAGS").is_none() {
590-
cargo.arg("-j").arg(self.jobs().to_string());
591-
}
587+
cargo.arg("-j").arg(self.jobs().to_string());
588+
// Remove make-related flags to ensure Cargo can correctly set things up
589+
cargo.env_remove("MAKEFLAGS");
590+
cargo.env_remove("MFLAGS");
592591

593592
// FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
594593
// Force cargo to output binaries with disambiguating hashes in the name

‎src/bootstrap/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use Build;
2424
use config::Config;
2525

2626
// The version number
27-
pub const CFG_RELEASE_NUM: &str = "1.27.0";
27+
pub const CFG_RELEASE_NUM: &str = "1.28.0";
2828

2929
pub struct GitInfo {
3030
inner: Option<Info>,

0 commit comments

Comments
 (0)