-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #108865 - Zoxc:library-dummy-crate, r=jyn514
Add a `sysroot` crate to represent the standard library crates This adds a dummy crate named `sysroot` to represent the standard library target instead of using the `test` crate. This allows the removal of `proc_macro` as a dependency of `test` allowing these 2 crates to build in parallel saving around 9 seconds locally.
- Loading branch information
Showing
10 changed files
with
44 additions
and
28 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,27 @@ | ||
[package] | ||
name = "sysroot" | ||
version = "0.0.0" | ||
edition = "2021" | ||
|
||
# this is a dummy crate to ensure that all required crates appear in the sysroot | ||
[dependencies] | ||
proc_macro = { path = "../proc_macro" } | ||
std = { path = "../std" } | ||
test = { path = "../test" } | ||
|
||
# Forward features to the `std` crate as necessary | ||
[features] | ||
default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"] | ||
backtrace = ["std/backtrace"] | ||
compiler-builtins-c = ["std/compiler-builtins-c"] | ||
compiler-builtins-mem = ["std/compiler-builtins-mem"] | ||
compiler-builtins-no-asm = ["std/compiler-builtins-no-asm"] | ||
compiler-builtins-mangled-names = ["std/compiler-builtins-mangled-names"] | ||
llvm-libunwind = ["std/llvm-libunwind"] | ||
system-llvm-libunwind = ["std/system-llvm-libunwind"] | ||
panic-unwind = ["std/panic_unwind"] | ||
panic_immediate_abort = ["std/panic_immediate_abort"] | ||
profiler = ["std/profiler"] | ||
std_detect_file_io = ["std/std_detect_file_io"] | ||
std_detect_dlsym_getauxval = ["std/std_detect_dlsym_getauxval"] | ||
std_detect_env_override = ["std/std_detect_env_override"] |
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 @@ | ||
// This is intentionally empty since this crate is only used to depend on other library crates. |
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
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