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.
This commit is contained in:
bjorn3
2025-11-11 13:40:48 +00:00
parent 01ec650b1e
commit 00fdfaf11c
+1 -1
View File
@@ -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 "$@"