From 28e3696e677bdef9c7daeda97463f4b6affa6f84 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 29 May 2020 22:08:17 +0300 Subject: musl: fix sources --- core/musl/checksums | 1 + core/musl/files/__stack_chk_fail_local.c | 2 ++ core/musl/sources | 1 + 3 files changed, 4 insertions(+) create mode 100644 core/musl/files/__stack_chk_fail_local.c (limited to 'core/musl') diff --git a/core/musl/checksums b/core/musl/checksums index 910381b4..93fe16af 100644 --- a/core/musl/checksums +++ b/core/musl/checksums @@ -4,3 +4,4 @@ c13407edd0e33be73cae72514cb234f8612e1c0e54401c9448daffd3a240158b queue.h e1e498a79bf160a5766fa560f2b07b206fe89fe21a62600c77d72e00a6992f92 tree.h d87d0cbb3690ae2c5d8cc218349fd8278b93855dd625deaf7ae50e320aad247c getconf.c 802b01b0349f6aa04cb02f78d01312921bc13f41b5acb88862a23b357e1706c6 getent +299a7d75a09de3e2e11e7fb4acc3182e4a14e868093d2f30938fce9bfcff13da __stack_chk_fail_local.c diff --git a/core/musl/files/__stack_chk_fail_local.c b/core/musl/files/__stack_chk_fail_local.c new file mode 100644 index 00000000..2b403a6e --- /dev/null +++ b/core/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(); } diff --git a/core/musl/sources b/core/musl/sources index e09d2941..61aaa8ee 100644 --- a/core/musl/sources +++ b/core/musl/sources @@ -4,3 +4,4 @@ files/queue.h files/tree.h files/getconf.c files/getent +files/__stack_chk_fail_local.c -- cgit v1.2.3