mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
On musl libssp_nonshared needs to be explicitly added to provide __stack_chk_fail_local (while rust does not use this symbol linking in gcc built code can require it).
11 lines
518 B
Diff
11 lines
518 B
Diff
--- rustc-1.41.0-src/src/libstd/build.rs.orig 2020-02-08 17:05:40.390387794 +0200
|
|
+++ rustc-1.41.0-src/src/libstd/build.rs 2020-02-08 17:09:46.844426452 +0200
|
|
@@ -11,6 +11,8 @@
|
|
println!("cargo:rustc-link-lib=dl");
|
|
println!("cargo:rustc-link-lib=rt");
|
|
println!("cargo:rustc-link-lib=pthread");
|
|
+ } else {
|
|
+ println!("cargo:rustc-link-lib=ssp_nonshared");
|
|
}
|
|
} else if target.contains("freebsd") {
|
|
println!("cargo:rustc-link-lib=execinfo");
|