-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
From 966beefe08be6045bfcca26079b76a7a80413080 Mon Sep 17 00:00:00 2001 | ||
From: None <[email protected]> | ||
Date: Thu, 28 Sep 2023 17:37:38 -0400 | ||
Subject: [PATCH] Disable libstd and libtest dylib | ||
|
||
--- | ||
library/std/Cargo.toml | 2 +- | ||
library/test/Cargo.toml | 2 +- | ||
2 files changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml | ||
index 5b21355..cb0c49b 100644 | ||
--- a/library/std/Cargo.toml | ||
+++ b/library/std/Cargo.toml | ||
@@ -9,7 +9,7 @@ description = "The Rust Standard Library" | ||
edition = "2021" | ||
|
||
[lib] | ||
-crate-type = ["dylib", "rlib"] | ||
+crate-type = ["rlib"] | ||
|
||
[dependencies] | ||
alloc = { path = "../alloc", public = true } | ||
diff --git a/library/test/Cargo.toml b/library/test/Cargo.toml | ||
index 91a1abd..a58c160 100644 | ||
--- a/library/test/Cargo.toml | ||
+++ b/library/test/Cargo.toml | ||
@@ -4,7 +4,7 @@ version = "0.0.0" | ||
edition = "2021" | ||
|
||
[lib] | ||
-crate-type = ["dylib", "rlib"] | ||
+crate-type = ["rlib"] | ||
|
||
[dependencies] | ||
getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] } | ||
-- | ||
2.42.0 | ||
|