[uClibc-cvs] uClibc/libc/sysdeps/linux/v850 crti.S, NONE, 1.1 crtn.S, NONE, 1.1 Makefile, 1.15, 1.16

Erik Andersen andersen at uclibc.org
Wed Nov 5 05:30:10 UTC 2003


Update of /var/cvs/uClibc/libc/sysdeps/linux/v850
In directory winder:/tmp/cvs-serv27011

Modified Files:
	Makefile 
Added Files:
	crti.S crtn.S 
Log Message:
Continue the conversion to using per-arch crti.S and crtn.S


--- NEW FILE: crti.S ---
	.file	"initfini.c"
#APP
	
	.section .init
#NO_APP
	.align 1
	.global __init
	.type	__init, @function
__init:
	jarl __save_r31, r10
#APP
	
	.align 1
	
	
	.section .fini
#NO_APP
	.align 1
	.global __fini
	.type	__fini, @function
__fini:
	jarl __save_r31, r10
#APP
	.align 1
	
	
	.ident	"GCC: (GNU) 3.3.2"

--- NEW FILE: crtn.S ---
	.file	"initfini.c"
#APP
	
	.section .init
#NO_APP
	.align 1
	.global __init
	.type	__init, @function
#NO_APP
	jr __return_r31
	.size	__init, .-__init
#APP
	
	.section .fini
#NO_APP
	.align 1
	.global __fini
	.type	__fini, @function
#NO_APP
	jr __return_r31
	.size	__fini, .-__fini
#APP
	
	.ident	"GCC: (GNU) 3.3.2"

Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/v850/Makefile,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile	18 Oct 2003 10:19:53 -0000	1.15
+++ Makefile	5 Nov 2003 05:30:06 -0000	1.16
@@ -27,6 +27,7 @@
 
 CRT0_SRC = crt0.S
 CRT0_OBJ = crt0.o crt1.o
+CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
 
 SSRC = setjmp.S __longjmp.S vfork.S
 SOBJS = $(patsubst %.S,%.o, $(SSRC))
@@ -41,7 +42,7 @@
 
 $(LIBC): ar-target 
 
-ar-target: $(OBJS) $(CRT0_OBJ)
+ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS)
 	$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
 	cp $(CRT0_OBJ) $(TOPDIR)lib/
 
@@ -57,6 +58,30 @@
 	$(CC) $(CFLAGS) -c $< -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 
+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:
 
 clean:




More information about the uClibc-cvs mailing list