2024-08-09 15:51:43 +00:00
|
|
|
From 175d52c5e1779764b66777db1e6f172c2dc365ff Mon Sep 17 00:00:00 2001
|
|
|
|
From: bjorn3 <17426603+bjorn3@users.noreply.github.com>
|
|
|
|
Date: Fri, 9 Aug 2024 15:44:51 +0000
|
|
|
|
Subject: [PATCH] Disable f16 and f128 in compiler-builtins
|
|
|
|
|
|
|
|
---
|
2024-12-04 14:38:37 +00:00
|
|
|
library/liballoc/Cargo.toml | 2 +-
|
2024-08-09 15:51:43 +00:00
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2024-12-04 14:38:37 +00:00
|
|
|
diff --git a/library/liballoc/Cargo.toml b/library/liballoc/Cargo.toml
|
2024-08-09 15:51:43 +00:00
|
|
|
index 7165c3e48af..968552ad435 100644
|
2024-12-04 14:38:37 +00:00
|
|
|
--- a/library/alloc/Cargo.toml
|
|
|
|
+++ b/library/alloc/Cargo.toml
|
2024-08-09 15:51:43 +00:00
|
|
|
@@ -11,7 +11,7 @@ test = { path = "../test" }
|
2025-02-06 12:46:33 +00:00
|
|
|
bench = false
|
2024-08-09 15:51:43 +00:00
|
|
|
|
2024-12-04 14:38:37 +00:00
|
|
|
[dependencies]
|
2025-01-28 22:25:23 +00:00
|
|
|
core = { path = "../core", public = true }
|
2025-03-20 02:12:40 +00:00
|
|
|
-compiler_builtins = { version = "=0.1.152", features = ['rustc-dep-of-std'] }
|
|
|
|
+compiler_builtins = { version = "=0.1.152", features = ['rustc-dep-of-std', 'no-f16-f128'] }
|
2024-12-04 14:38:37 +00:00
|
|
|
|
2025-02-06 12:46:33 +00:00
|
|
|
[features]
|
|
|
|
compiler-builtins-mem = ['compiler_builtins/mem']
|
2024-08-09 15:51:43 +00:00
|
|
|
--
|
|
|
|
2.34.1
|
|
|
|
|