We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16067fd commit bbaaeccCopy full SHA for bbaaecc
build_system/build_sysroot.rs
@@ -102,15 +102,6 @@ pub(crate) fn build_sysroot(
102
.install_into_sysroot(&dist_dir);
103
}
104
105
- // Copy std for the host to the lib dir. This is necessary for the jit mode to find
106
- // libstd.
107
- for lib in host.libs {
108
- let filename = lib.file_name().unwrap().to_str().unwrap();
109
- if filename.contains("std-") && !filename.contains(".rlib") {
110
- try_hard_link(&lib, dist_dir.join("lib").join(lib.file_name().unwrap()));
111
- }
112
113
-
114
let mut target_compiler = {
115
let rustc_clif = dist_dir.join(wrapper_base_name.replace("____", "rustc-clif"));
116
let rustdoc_clif = dist_dir.join(wrapper_base_name.replace("____", "rustdoc-clif"));
0 commit comments