diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-07-25 01:29:02 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-10-17 00:58:44 -0500 |
commit | 0f5207bac6c6280ecf6d9910ddfb04f35cec6244 (patch) | |
tree | 099423a1edaf962cc0a6023901a59cdc8234ed63 /bootstrap/rust-1.62/0006-Prefer-libgcc_eh-over-libunwind-for-musl.patch | |
parent | 3bb402800fd7e4c05da8348662c5c0a57bbadec6 (diff) | |
download | packages-0f5207bac6c6280ecf6d9910ddfb04f35cec6244.tar.gz packages-0f5207bac6c6280ecf6d9910ddfb04f35cec6244.tar.bz2 packages-0f5207bac6c6280ecf6d9910ddfb04f35cec6244.tar.xz packages-0f5207bac6c6280ecf6d9910ddfb04f35cec6244.zip |
bootstrap/rust-1.62: New package
Diffstat (limited to 'bootstrap/rust-1.62/0006-Prefer-libgcc_eh-over-libunwind-for-musl.patch')
-rw-r--r-- | bootstrap/rust-1.62/0006-Prefer-libgcc_eh-over-libunwind-for-musl.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bootstrap/rust-1.62/0006-Prefer-libgcc_eh-over-libunwind-for-musl.patch b/bootstrap/rust-1.62/0006-Prefer-libgcc_eh-over-libunwind-for-musl.patch new file mode 100644 index 000000000..27b3cd547 --- /dev/null +++ b/bootstrap/rust-1.62/0006-Prefer-libgcc_eh-over-libunwind-for-musl.patch @@ -0,0 +1,25 @@ +From 78ae73f09d07c847ede1dc683b8907f5bd5bd17f Mon Sep 17 00:00:00 2001 +From: Samuel Holland <samuel@sholland.org> +Date: Sat, 9 Sep 2017 00:14:16 -0500 +Subject: [PATCH 06/14] Prefer libgcc_eh over libunwind for musl + +--- + library/unwind/src/lib.rs | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/library/unwind/src/lib.rs b/library/unwind/src/lib.rs +index 079626f0fea..590fca0acfa 100644 +--- a/library/unwind/src/lib.rs ++++ b/library/unwind/src/lib.rs +@@ -51,7 +51,7 @@ + #[link(name = "unwind", cfg(not(target_feature = "crt-static")))] + extern "C" {} + } else { +- #[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))] ++ #[link(name = "gcc_eh", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))] + #[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))] + extern "C" {} + } +-- +2.35.1 + |