mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 14:30:06 +00:00
Handle NO_CTORS_DTORS_SECTIONS for MIPS.
This commit is contained in:
parent
a2bfcf6de8
commit
4f46492730
@ -1,3 +1,9 @@
|
||||
2010-12-30 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/mips/init-first.c: Don't call __libc_global_ctors if
|
||||
NO_CTORS_DTORS_SECTIONS is defined.
|
||||
* sysdeps/mach/hurd/mips/init-first.c: Likewise.
|
||||
|
||||
2010-12-21 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/mips/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Initialization code run first thing by the ELF startup code. For Mips/Hurd.
|
||||
Copyright (C) 1996,1997,1998,2000,01,02,03 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996,1997,1998,2000,01,02,03,10 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -119,7 +119,7 @@ init1 (int argc, char *arg0, ...)
|
||||
__getopt_clean_environment (envp);
|
||||
#endif
|
||||
|
||||
#ifdef SHARED
|
||||
#if defined SHARED && !defined NO_CTORS_DTORS_SECTIONS
|
||||
__libc_global_ctors ();
|
||||
#endif
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Initialization code run first thing by the ELF startup code. For mips/Unix.
|
||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996, 1997, 2010 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -50,7 +50,9 @@ _init (int argc, ...)
|
||||
{
|
||||
init (&argc);
|
||||
|
||||
#ifndef NO_CTORS_DTORS_SECTIONS
|
||||
__libc_global_ctors ();
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user