From 7f260a953b583fdca533d57f92639d69024c262b Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 4 Sep 2022 13:35:58 +0200 Subject: [PATCH] Rustup to rustc 1.65.0-nightly (84f0c3f79 2022-09-03) --- example/mini_core_hello_world.rs | 1 + rust-toolchain | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/example/mini_core_hello_world.rs b/example/mini_core_hello_world.rs index e83be3a3df5..215d3556a17 100644 --- a/example/mini_core_hello_world.rs +++ b/example/mini_core_hello_world.rs @@ -93,6 +93,7 @@ fn start( main: fn() -> T, argc: isize, argv: *const *const u8, + _sigpipe: u8, ) -> isize { if argc == 3 { unsafe { puts(*argv as *const i8); } diff --git a/rust-toolchain b/rust-toolchain index acc86748867..f17897e48ad 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2022-08-30" +channel = "nightly-2022-09-04" components = ["rust-src", "rustc-dev", "llvm-tools-preview"]