From f7d7ce27c8104949d36df2020e58acca58c1b1e6 Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Sat, 23 Apr 2016 00:11:56 -0600 Subject: [PATCH] Update to a nightly with rustc::ty::layout. --- .travis.yml | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 598ea9852e56..e152db542270 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: -- nightly-2016-04-11 +- nightly-2016-04-21 - nightly matrix: allow_failures: diff --git a/README.md b/README.md index 5a4e27431703..26d1278ceb84 100644 --- a/README.md +++ b/README.md @@ -15,26 +15,26 @@ I currently recommend that you install [multirust][multirust] and then use it to install the current rustc nightly version that works with Miri: ```sh -multirust update nightly-2016-04-11 +multirust update nightly-2016-04-21 ``` ## Build ```sh -multirust run nightly-2016-04-11 cargo build +multirust run nightly-2016-04-21 cargo build ``` ## Run a test ```sh -multirust run nightly-2016-04-11 cargo run -- \ - --sysroot $HOME/.multirust/toolchains/nightly-2016-04-11 \ +multirust run nightly-2016-04-21 cargo run -- \ + --sysroot $HOME/.multirust/toolchains/nightly-2016-04-21 \ test/filename.rs ``` If you are using [rustup][rustup] (the name of the multirust rewrite in Rust), the `sysroot` path will also include your build target (e.g. -`$HOME/.multirust/toolchains/nightly-2016-04-11-x86_64-apple-darwin`). You can +`$HOME/.multirust/toolchains/nightly-2016-04-21-x86_64-apple-darwin`). You can see the current toolchain's directory by running `rustup which cargo` (ignoring the trailing `/bin/cargo`).