Skip to content

Commit 144cc72

Browse files
committed
Update cargo bootstrap rev and add fix for cargo#3005
1 parent fce605e commit 144cc72

File tree

7 files changed

+46
-1
lines changed

7 files changed

+46
-1
lines changed

src/bootstrap/Cargo.lock

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bootstrap/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,10 @@ impl Build {
543543
.arg("-j").arg(self.jobs().to_string())
544544
.arg("--target").arg(target);
545545

546+
// FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
547+
// Force cargo to output binaries with disambiguating hashes in the name
548+
cargo.env("__CARGO_DEFAULT_LIB_METADATA", "1");
549+
546550
let stage;
547551
if compiler.stage == 0 && self.local_rebuild {
548552
// Assume the local-rebuild rustc already has stage1 features.

src/rustc/Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rustc/std_shim/Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/stage0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
rustc: beta-2016-08-17
1616
rustc_key: 195e6261
17-
cargo: nightly-2016-08-16
17+
cargo: nightly-2016-08-21

src/tools/compiletest/Cargo.lock

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tools/linkchecker/Cargo.lock

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)