Skip to content

Commit fcb452f

Browse files
committed
Revert "Revert Rust to 1.74.1."
This reverts commit 591bbc7.
1 parent 4ccbb14 commit fcb452f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Makefile

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,14 @@ build-armv7-unknown-linux-musleabihf:
2222
cross build --target armv7-unknown-linux-musleabihf --release
2323

2424
build-mips-unknown-linux-musl:
25-
cross build --target mips-unknown-linux-musl --release --no-default-features --features semtech_udp
25+
# mips is a tier-3 target.
26+
rustup +nightly component add rust-src
27+
cross +nightly build -Z build-std=panic_abort,std --target mips-unknown-linux-musl --release --no-default-features --features semtech_udp
2628

2729
build-mipsel-unknown-linux-musl:
28-
cross build --target mipsel-unknown-linux-musl --release --no-default-features --features semtech_udp
30+
# mipsel is a tier-3 target.
31+
rustup +nightly component add rust-src
32+
cross +nightly build -Z build-std=panic_abort,std --target mipsel-unknown-linux-musl --release --no-default-features --features semtech_udp
2933

3034
# Build distributable binaries for all targets.
3135
dist: \

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.74.1"
2+
channel = "1.76.0"
33
components = ["rustfmt", "clippy"]
44
profile = "default"

0 commit comments

Comments
 (0)