Skip to content

Commit

Permalink
Update cargo bootstrap rev and add fix for cargo#3005
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Aug 23, 2016
1 parent fce605e commit 144cc72
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 1 deletion.
21 changes: 21 additions & 0 deletions src/bootstrap/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/bootstrap/lib.rs
Expand Up @@ -543,6 +543,10 @@ impl Build {
.arg("-j").arg(self.jobs().to_string())
.arg("--target").arg(target);

// FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
// Force cargo to output binaries with disambiguating hashes in the name
cargo.env("__CARGO_DEFAULT_LIB_METADATA", "1");

let stage;
if compiler.stage == 0 && self.local_rebuild {
// Assume the local-rebuild rustc already has stage1 features.
Expand Down
2 changes: 2 additions & 0 deletions src/rustc/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/rustc/std_shim/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/stage0.txt
Expand Up @@ -14,4 +14,4 @@

rustc: beta-2016-08-17
rustc_key: 195e6261
cargo: nightly-2016-08-16
cargo: nightly-2016-08-21
10 changes: 10 additions & 0 deletions src/tools/compiletest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions src/tools/linkchecker/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 144cc72

Please sign in to comment.