musl: call a_crash() inside __stack_chk_fail_local instead of calling __stack_chk_fail

Fixes relocation errors on PowerPC

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 46266
This commit is contained in:
Felix Fietkau 2015-07-08 12:05:55 +00:00
parent ceda9f1554
commit cd5d45604f

View file

@ -51,8 +51,8 @@ index 0000000..2b403a6
--- /dev/null
+++ b/libssp_nonshared/__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(); }
+#include "atomic.h"
+void __attribute__((visibility ("hidden"))) __stack_chk_fail_local(void) { a_crash(); }
--
2.1.4