Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to rustc 1.20.0-nightly (ab91c70cc 2017-07-14), use non-"alt" std #17727

Merged
merged 2 commits into from Jul 17, 2017
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Revert "Fetch "alt" rust std build when we do so for rustc"

This reverts commit 6b52330.

This is unnecessary now that rust-lang/rust#42967
is fixed by rust-lang/rust#43167.

This migth be a fix for #17604
  • Loading branch information
SimonSapin committed Jul 14, 2017
commit 7d68a5aeafeac3e25ef4e3d71b0dab084417a7a2
@@ -135,11 +135,8 @@ def bootstrap_rustc(self, force=False, target=[], stable=False):
% (version, target_triple))
tgz_file = install_dir + ('rust-std-%s-%s.tar.gz' % (version, target_triple))
else:
tarball = "%s/rust-std-nightly-%s.tar.gz" % (version, target_triple)
base_url = "https://s3.amazonaws.com/rust-lang-ci/rustc-builds"
if not self.config["build"]["llvm-assertions"]:
base_url += "-alt"
std_url = base_url + "/" + tarball
std_url = ("https://s3.amazonaws.com/rust-lang-ci/rustc-builds/%s/rust-std-nightly-%s.tar.gz"
% (version, target_triple))
tgz_file = install_dir + ('rust-std-nightly-%s.tar.gz' % target_triple)

download_file("Host rust library for target %s" % target_triple, std_url, tgz_file)
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.