We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 405642b commit 2abc12dCopy full SHA for 2abc12d
build_system/build_sysroot.rs
@@ -91,7 +91,9 @@ pub(crate) fn build_sysroot(
91
{
92
let file = file.unwrap().path();
93
let file_name_str = file.file_name().unwrap().to_str().unwrap();
94
- if file_name_str.contains("rustc_")
+ if (file_name_str.contains("rustc_")
95
+ && !file_name_str.contains("rustc_std_workspace_")
96
+ && !file_name_str.contains("rustc_demangle"))
97
|| file_name_str.contains("chalk")
98
|| file_name_str.contains("tracing")
99
|| file_name_str.contains("regex")
0 commit comments