From 70cd13e211b15be9e2359bfd11dc607b4d571eb3 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Wed, 13 Nov 2024 06:44:07 -0700 Subject: [PATCH] Remove soft-float flag `-Csoft-float` is deprecated. Soft float is enabled by the target spec. $ rustc -Z unstable-options --target=x86_64-unknown-uefi --print target-spec-json | grep features "features": "-mmx,-sse,+soft-float", Ref: https://github.com/rust-lang/rust/issues/129893 Signed-off-by: Tim Crawford --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 503ef34..6df8e29 100644 --- a/Makefile +++ b/Makefile @@ -51,5 +51,4 @@ $(BUILD)/boot.efi: Cargo.lock Cargo.toml src/* src/*/* --target $(TARGET) \ --release \ -- \ - -C soft-float \ --emit link=$@