musl: add __stack_chk_fail_local

This is necessary for libssp_nonshared.a (only build for cross
compilers for now)
This commit is contained in:
oreo639 2022-12-27 02:26:14 -08:00 committed by Đoàn Trần Công Danh
parent 88c076875e
commit b32cc429fc

View file

@ -0,0 +1,2 @@
extern void __stack_chk_fail(void);
void __attribute__((visibility ("hidden"))) __stack_chk_fail_local(void) { __stack_chk_fail(); }