From ca3ebf11e06d7f21178297457ee202edb892e34d Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Thu, 15 Aug 2024 08:51:32 +0100 Subject: [PATCH] Update rust nightly for mips(el) builds. serde would not build using the older version. When using the latest nightly (today), there is an other build issue. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 89116b8..3271b06 100644 --- a/Makefile +++ b/Makefile @@ -23,13 +23,13 @@ build-armv7-unknown-linux-musleabihf: build-mips-unknown-linux-musl: # mips is a tier-3 target. - rustup toolchain add nightly-2024-02-18-x86_64-unknown-linux-gnu - cross +nightly-2024-02-18 build -Z build-std=panic_abort,std --target mips-unknown-linux-musl --release + rustup toolchain add nightly-2024-05-17-x86_64-unknown-linux-gnu + cross +nightly-2024-05-17 build -Z build-std=panic_abort,std --target mips-unknown-linux-musl --release build-mipsel-unknown-linux-musl: # mipsel is a tier-3 target. - rustup toolchain add nightly-2024-02-18-x86_64-unknown-linux-gnu - cross +nightly-2024-02-18 build -Z build-std=panic_abort,std --target mipsel-unknown-linux-musl --release + rustup toolchain add nightly-2024-05-17-x86_64-unknown-linux-gnu + cross +nightly-2024-05-17 build -Z build-std=panic_abort,std --target mipsel-unknown-linux-musl --release # Build distributable binaries for all targets. dist: \