From b32cc429fc31ad541d872c8715d031c315526171 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Tue, 27 Dec 2022 02:26:14 -0800 Subject: [PATCH] musl: add __stack_chk_fail_local This is necessary for libssp_nonshared.a (only build for cross compilers for now) --- srcpkgs/musl/files/__stack_chk_fail_local.c | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 srcpkgs/musl/files/__stack_chk_fail_local.c diff --git a/srcpkgs/musl/files/__stack_chk_fail_local.c b/srcpkgs/musl/files/__stack_chk_fail_local.c new file mode 100644 index 00000000000..2b403a6e046 --- /dev/null +++ b/srcpkgs/musl/files/__stack_chk_fail_local.c @@ -0,0 +1,2 @@ +extern void __stack_chk_fail(void); +void __attribute__((visibility ("hidden"))) __stack_chk_fail_local(void) { __stack_chk_fail(); }