29 lines
940 B
Diff
29 lines
940 B
Diff
From 0b057b456a5b24ce5cf898e47eddb7cbc7448fe2 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=89rico=20Nogueira?= <erico.erc@gmail.com>
|
|
Date: Fri, 16 Apr 2021 03:34:16 -0300
|
|
Subject: [PATCH 14/15] copy new version of need-ssp_nonshared.patch from
|
|
alpine
|
|
|
|
---
|
|
library/std/src/sys/unix/mod.rs | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/library/std/src/sys/unix/mod.rs b/library/std/src/sys/unix/mod.rs
|
|
index 34a023b02..934a87570 100644
|
|
--- a/library/std/src/sys/unix/mod.rs
|
|
+++ b/library/std/src/sys/unix/mod.rs
|
|
@@ -297,6 +297,10 @@ cfg_if::cfg_if! {
|
|
#[link(name = "dl")]
|
|
#[link(name = "log")]
|
|
extern "C" {}
|
|
+ } else if #[cfg(all(target_os = "linux", target_env = "musl"))] {
|
|
+ #[link(name = "ssp_nonshared")]
|
|
+ #[link(name = "execinfo")]
|
|
+ extern "C" {}
|
|
} else if #[cfg(target_os = "freebsd")] {
|
|
#[link(name = "execinfo")]
|
|
#[link(name = "pthread")]
|
|
--
|
|
2.37.2
|
|
|