diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-09 20:37:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-09 20:37:37 +0000 |
commit | 06b31ad3ef500de502d461954466018aec10e437 (patch) | |
tree | 2a60f2fb3811e74b9fce595943432ddde46f023f /sysdeps/mips/elf | |
parent | 58a851f1082519eab4b881036dea70a8ef052f25 (diff) | |
download | glibc-06b31ad3ef500de502d461954466018aec10e437.tar glibc-06b31ad3ef500de502d461954466018aec10e437.tar.gz glibc-06b31ad3ef500de502d461954466018aec10e437.tar.bz2 glibc-06b31ad3ef500de502d461954466018aec10e437.zip |
* elf/Makefile (tests): Uncomment tst-array[123].
* Makeconfig (CPPFLAGS-.oS): Add -DLIBC_NONSHARED=1.
* csu/elf-init.c: New file.
* csu/Makefile (routines, static-only-routines): Add elf-init.
* sysdeps/alpha/elf/start.S: Use __libc_csu_init in place of _init
and __libc_csu_fini in place of _fini.
* sysdeps/arm/elf/start.S: Likewise.
* sysdeps/cris/elf/start.S: Likewise.
* sysdeps/hppa/elf/start.S: Likewise.
* sysdeps/i386/elf/start.S: Likewise.
* sysdeps/ia64/elf/start.S: Likewise.
* sysdeps/m68k/elf/start.S: Likewise.
* sysdeps/mach/hurd/powerpc/static-start.S: Likewise.
* sysdeps/mips/elf/start.S: Likewise.
* sysdeps/powerpc/powerpc32/elf/start.S: Likewise.
* sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
* sysdeps/s390/s390-32/elf/start.S: Likewise.
* sysdeps/s390/s390-64/elf/start.S: Likewise.
* sysdeps/sh/elf/start.S: Likewise.
* sysdeps/sparc/sparc32/elf/start.S: Likewise.
* sysdeps/sparc/sparc64/elf/start.S: Likewise.
* sysdeps/x86_64/elf/start.S: Likewise.
Diffstat (limited to 'sysdeps/mips/elf')
-rw-r--r-- | sysdeps/mips/elf/start.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mips/elf/start.S b/sysdeps/mips/elf/start.S index 01908e28db..e85e9f535e 100644 --- a/sysdeps/mips/elf/start.S +++ b/sysdeps/mips/elf/start.S @@ -83,8 +83,8 @@ ENTRY_POINT: the stack is aligned to double words (8 bytes). */ and $29, 0xfffffff8 subu $29, 32 - la $7, _init /* init */ - la $8, _fini + la $7, __libc_csu_init /* init */ + la $8, __libc_csu_fini sw $8, 16($29) /* fini */ sw $2, 20($29) /* rtld_fini */ sw $29, 24($29) /* stack_end */ |