File: Revert-Enable-f16-for-MIPS.patch

package info (click to toggle)
rustc 1.87.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 925,564 kB
  • sloc: xml: 158,127; python: 36,039; javascript: 19,761; sh: 19,737; cpp: 18,981; ansic: 13,133; asm: 4,376; makefile: 710; perl: 29; lisp: 28; ruby: 19; sql: 11
file content (23 lines) | stat: -rw-r--r-- 791 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: =?utf-8?q?Fabian_Gr=C3=BCnbichler?= <git@fabian.gruenbichler.email>
Date: Sat, 20 Sep 2025 15:56:29 +0200
Subject: Revert "Enable `f16` for MIPS"

This reverts commit cf1242c461e035fd2cfb99f620e810015744cac4.

Description: requires LLVM 20
---
 library/std/build.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/library/std/build.rs b/library/std/build.rs
index fe47088..c467980 100644
--- a/library/std/build.rs
+++ b/library/std/build.rs
@@ -116,6 +116,7 @@ fn main() {
         ("csky", _) => false,
         ("hexagon", _) => false,
         ("loongarch64", _) => false,
+        ("mips" | "mips64" | "mips32r6" | "mips64r6", _) => false,
         ("powerpc" | "powerpc64", _) => false,
         ("sparc" | "sparc64", _) => false,
         ("wasm32" | "wasm64", _) => false,