From 00fdfaf11c34580645b53ab73b53f353ec682131 Mon Sep 17 00:00:00 2001 From: bjorn3 <4397-bjorn3@users.noreply.gitlab.redox-os.org> Date: Tue, 11 Nov 2025 13:40:48 +0000 Subject: [PATCH] Remove -Csoft-float from clippy.sh It doesn't do anything and will be removed in a future rustc version. Usage was already removed from the Makefile previously. --- clippy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy.sh b/clippy.sh index 655f1b8937..9528dfcf27 100755 --- a/clippy.sh +++ b/clippy.sh @@ -3,5 +3,5 @@ set -e export RUST_TARGET_PATH="${PWD}/targets" -export RUSTFLAGS="-C soft-float -C debuginfo=2" +export RUSTFLAGS="-C debuginfo=2" cargo clippy --lib --release --target x86_64-unknown-none "$@"