rust/patches/cross_patches/0001-Disable-libstd-and-libtest-dylib.patch

26 lines
618 B
Diff
Raw Normal View History

2025-03-27 14:33:03 -04:00
From b2911e732d1bf0e28872495c4c47af1dad3c7911 Mon Sep 17 00:00:00 2001
From: None <none@example.com>
2025-03-27 14:33:03 -04:00
Date: Thu, 27 Mar 2025 14:30:10 -0400
Subject: [PATCH] Disable libstd and libtest dylib
---
2025-03-27 14:33:03 -04:00
library/std/Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
2025-03-27 14:33:03 -04:00
index 176da60..c183cdb 100644
--- a/library/std/Cargo.toml
+++ b/library/std/Cargo.toml
2025-03-27 14:33:03 -04:00
@@ -10,7 +10,7 @@ edition = "2024"
autobenches = false
[lib]
-crate-type = ["dylib", "rlib"]
+crate-type = ["rlib"]
[dependencies]
alloc = { path = "../alloc", public = true }
2025-03-27 14:33:03 -04:00
--
2.49.0