From: Rich Felker Date: Fri, 23 Nov 2012 18:31:16 +0000 (-0500) Subject: add missing startfiles for powerpc X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=0375c68fe7ed39b1173b62574936152645624078;p=musl add missing startfiles for powerpc --- diff --git a/crt/powerpc/crti.s b/crt/powerpc/crti.s new file mode 100644 index 00000000..60461ca4 --- /dev/null +++ b/crt/powerpc/crti.s @@ -0,0 +1,15 @@ +.section .init +.align 2 +.global _init +_init: + stwu 1,-32(1) + mflr 0 + stw 0,36(1) + +.section .fini +.align 2 +.global _fini +_fini: + stwu 1,-32(1) + mflr 0 + stw 0,36(1) diff --git a/crt/powerpc/crtn.s b/crt/powerpc/crtn.s new file mode 100644 index 00000000..2d14a6f0 --- /dev/null +++ b/crt/powerpc/crtn.s @@ -0,0 +1,13 @@ +.section .init +.align 2 + lwz 0,36(1) + addi 1,1,32 + mtlr 0 + blr + +.section .fini +.align 2 + lwz 0,36(1) + addi 1,1,32 + mtlr 0 + blr