Эх сурвалжийг харах

Continue the conversion to using per-arch crti.S and crtn.S

Eric Andersen 21 жил өмнө
parent
commit
a1ec4fae6d

+ 26 - 1
libc/sysdeps/linux/arm/Makefile

@@ -23,6 +23,7 @@ ASFLAGS=$(CFLAGS)
 CRT0_SRC = crt0.S
 CRT0_OBJ = crt0.o crt1.o gcrt1.o
 CRT0_DEPS=gmon-start.S
+CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
 
 SSRC=__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \
 	bsd-_setjmp.S sigrestorer.S mmap64.S
@@ -38,7 +39,7 @@ all: $(OBJS) $(LIBC)
 
 $(LIBC): ar-target 
 
-ar-target: $(OBJS) $(CRT0_OBJ)
+ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS)
 	$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
 	cp $(CRT0_OBJ) $(TOPDIR)lib/
 
@@ -64,6 +65,30 @@ gmon-start.S: ../common/gmon-start.c
 gcrt1.o: $(CRT0_DEPS)
 endif
 
+ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
+crti.o: crti.S
+	$(CC) $(SAFECFLAGS) -c crti.S -o crti.o
+
+$(TOPDIR)lib/crti.o: crti.o
+	$(INSTALL) -d $(TOPDIR)lib/
+	cp crti.o $(TOPDIR)lib/
+
+crtn.o: crtn.S
+	$(CC) $(SAFECFLAGS) -c crtn.S -o crtn.o
+
+$(TOPDIR)lib/crtn.o: crtn.o
+	$(INSTALL) -d $(TOPDIR)lib/
+	cp crtn.o $(TOPDIR)lib/
+else
+$(TOPDIR)lib/crti.o:
+	$(INSTALL) -d $(TOPDIR)lib/
+	$(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o
+$(TOPDIR)lib/crtn.o:
+	$(INSTALL) -d $(TOPDIR)lib/
+	$(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o
+endif
+
+
 headers:
 	$(LN) -fs ../libc/sysdeps/linux/arm/fpu_control.h $(TOPDIR)/include/
 

+ 26 - 0
libc/sysdeps/linux/arm/crti.S

@@ -0,0 +1,26 @@
+	.file	"initfini.c"
+	
+	.section .init
+	.align	2
+	.global	_init
+	.type	_init, %function
+_init:
+	@ args = 0, pretend = 0, frame = 0
+	@ frame_needed = 0, uses_anonymous_args = 0
+	str	lr, [sp, #-4]!
+	
+	.align 2
+	
+	
+	.section .fini
+	.align	2
+	.global	_fini
+	.type	_fini, %function
+_fini:
+	@ args = 0, pretend = 0, frame = 0
+	@ frame_needed = 0, uses_anonymous_args = 0
+	str	lr, [sp, #-4]!
+	.align 2
+	
+	
+	.ident	"GCC: (GNU) 3.3.2 20031005 (Debian prerelease)"

+ 17 - 0
libc/sysdeps/linux/arm/crtn.S

@@ -0,0 +1,17 @@
+	.file	"initfini.c"
+	
+	.section .init
+	.align	2
+	.global	_init
+	.type	_init, %function
+	ldr	pc, [sp], #4
+	.size	_init, .-_init
+	
+	.section .fini
+	.align	2
+	.global	_fini
+	.type	_fini, %function
+	ldr	pc, [sp], #4
+	.size	_fini, .-_fini
+	
+	.ident	"GCC: (GNU) 3.3.2 20031005 (Debian prerelease)"

+ 27 - 1
libc/sysdeps/linux/powerpc/Makefile

@@ -23,6 +23,7 @@ ASFLAGS=$(CFLAGS)
 CRT0_SRC = crt0.S
 CRT0_OBJ = crt0.o crt1.o gcrt1.o
 CRT0_DEPS=gmon-start.S
+CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
 
 SSRC=__longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S brk.S \
 	clone.S __uClibc_syscall.S syscall.S
@@ -41,7 +42,7 @@ all: $(OBJS) $(LIBC)
 
 $(LIBC): ar-target 
 
-ar-target: $(OBJS) $(CRT0_OBJ)
+ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS)
 	$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
 	cp $(CRT0_OBJ) $(TOPDIR)lib/
 
@@ -67,6 +68,31 @@ gmon-start.S: ../common/gmon-start.c
 gcrt1.o: $(CRT0_DEPS)
 endif
 
+
+ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
+crti.o: crti.S
+	$(CC) $(SAFECFLAGS) -c crti.S -o crti.o
+
+$(TOPDIR)lib/crti.o: crti.o
+	$(INSTALL) -d $(TOPDIR)lib/
+	cp crti.o $(TOPDIR)lib/
+
+crtn.o: crtn.S
+	$(CC) $(SAFECFLAGS) -c crtn.S -o crtn.o
+
+$(TOPDIR)lib/crtn.o: crtn.o
+	$(INSTALL) -d $(TOPDIR)lib/
+	cp crtn.o $(TOPDIR)lib/
+else
+$(TOPDIR)lib/crti.o:
+	$(INSTALL) -d $(TOPDIR)lib/
+	$(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o
+$(TOPDIR)lib/crtn.o:
+	$(INSTALL) -d $(TOPDIR)lib/
+	$(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o
+endif
+
+
 headers:
 	$(LN) -fs ../libc/sysdeps/linux/powerpc/fpu_control.h $(TOPDIR)/include/
 

+ 31 - 0
libc/sysdeps/linux/powerpc/crti.S

@@ -0,0 +1,31 @@
+	.file	"initfini.c"
+#APP
+	
+	.section .init
+#NO_APP
+	.align 2
+	.globl _init
+	.type	_init, @function
+_init:
+	stwu 1,-32(1)
+	mflr 0
+	stw 0,36(1)
+#APP
+	
+	.align 2
+	
+	
+	.section .fini
+#NO_APP
+	.align 2
+	.globl _fini
+	.type	_fini, @function
+_fini:
+	stwu 1,-32(1)
+	mflr 0
+	stw 0,36(1)
+#APP
+	.align 2
+	
+	
+	.ident	"GCC: (GNU) 3.3.1 20030626 (Debian prerelease)"

+ 30 - 0
libc/sysdeps/linux/powerpc/crtn.S

@@ -0,0 +1,30 @@
+	.file	"initfini.c"
+#APP
+	
+	.section .init
+#NO_APP
+	.align 2
+	.globl _init
+	.type	_init, @function
+#NO_APP
+	lwz 0,36(1)
+	addi 1,1,32
+	mtlr 0
+	blr
+	.size	_init, .-_init
+#APP
+	
+	.section .fini
+#NO_APP
+	.align 2
+	.globl _fini
+	.type	_fini, @function
+#NO_APP
+	lwz 0,36(1)
+	addi 1,1,32
+	mtlr 0
+	blr
+	.size	_fini, .-_fini
+#APP
+	
+	.ident	"GCC: (GNU) 3.3.1 20030626 (Debian prerelease)"