From 24c76198a861f41aa8d377ea52b4e109d3e8785c Mon Sep 17 00:00:00 2001 From: Toshiki Teramura Date: Wed, 8 Nov 2017 18:01:27 +0900 Subject: [PATCH] Use nightly-2017-11-07 https://github.com/japaric/core64/pull/3 --- src/ptx_builder/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ptx_builder/mod.rs b/src/ptx_builder/mod.rs index 214f892..894492a 100644 --- a/src/ptx_builder/mod.rs +++ b/src/ptx_builder/mod.rs @@ -20,7 +20,7 @@ const PTX_BUILDER_TARGET: &'static str = include_str!("nvptx64-nvidia-cuda.json" // japaric/core64 cannot be compiled with recent nightly // https://github.com/japaric/nvptx/issues/12 -const NIGHTLY: &'static str = "nightly-2017-09-01"; +const NIGHTLY: &'static str = "nightly-2017-11-07"; fn install_file(work_dir: &Path, contents: &str, filename: &str) { let mut f = fs::File::create(work_dir.join(filename)).unwrap();