From 8e7bd0b5b32d58c96aca7c6d45d3989211e1a378 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 8 Aug 2024 15:03:50 -0300 Subject: [PATCH] [SOL] Disable f16 and f128 These floating point widths are not supported in Rust 1.78. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f4bbc11a..52f033e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ cc = { optional = true, version = "1.0" } panic-handler = { path = 'crates/panic-handler' } [features] -default = ["compiler-builtins"] +default = ["compiler-builtins", "no-f16-f128"] # Enable compilation of C code in compiler-rt, filling in some more optimized # implementations and also filling in unimplemented intrinsics