diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-03-12 12:47:36 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-03-12 12:50:13 -0700 |
commit | 9967e003b32d20441892386f1092d1aded51e1aa (patch) | |
tree | a39f6ef0310b7b112c568abb0653512e59d2dfed /csu/gmon-start.c | |
parent | e6b5a29364551637c6f43e6c41b06cd8dd3a129b (diff) | |
download | glibc-9967e003b32d20441892386f1092d1aded51e1aa.tar glibc-9967e003b32d20441892386f1092d1aded51e1aa.tar.gz glibc-9967e003b32d20441892386f1092d1aded51e1aa.tar.bz2 glibc-9967e003b32d20441892386f1092d1aded51e1aa.zip |
Add sysdeps/init_array to produce empty crt[in].o and use .preinit_array for gcrt1.o
Diffstat (limited to 'csu/gmon-start.c')
-rw-r--r-- | csu/gmon-start.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/csu/gmon-start.c b/csu/gmon-start.c index 54495eb493..0c18321095 100644 --- a/csu/gmon-start.c +++ b/csu/gmon-start.c @@ -59,10 +59,17 @@ extern char etext[]; # endif #endif +#ifdef GMON_START_ARRAY_SECTION +static void __gmon_start__ (void); +static void (*const gmon_start_initializer) (void) + __attribute__ ((used, section (GMON_START_ARRAY_SECTION))) = &__gmon_start__; +static +#else /* We cannot use the normal constructor mechanism to call __gmon_start__ because gcrt1.o appears before crtbegin.o in the link. Instead crti.o calls it specially. */ extern void __gmon_start__ (void); +#endif void __gmon_start__ (void) |