We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec4bcaa commit 1a37262Copy full SHA for 1a37262
src/bootstrap/compile.rs
@@ -227,8 +227,10 @@ fn copy_self_contained_objects(
227
target_deps.push((target, DependencyType::TargetSelfContained));
228
}
229
230
- let libunwind_path = copy_llvm_libunwind(builder, target, &libdir_self_contained);
231
- target_deps.push((libunwind_path, DependencyType::TargetSelfContained));
+ if !target.starts_with("s390x") {
+ let libunwind_path = copy_llvm_libunwind(builder, target, &libdir_self_contained);
232
+ target_deps.push((libunwind_path, DependencyType::TargetSelfContained));
233
+ }
234
} else if target.ends_with("-wasi") {
235
let srcdir = builder
236
.wasi_root(target)
0 commit comments