diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/elf.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 118eadc..3c0175c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-03-03 Jonathan Larmour <jlarmour@cygnus.co.uk> + + * config/mips/elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added. + 2000-03-03 Richard Henderson <rth@cygnus.com> * alpha.c (alpha_emit_set_const_1): Re-order cases to prefer diff --git a/gcc/config/mips/elf.h b/gcc/config/mips/elf.h index cd115c0..14c1432 100644 --- a/gcc/config/mips/elf.h +++ b/gcc/config/mips/elf.h @@ -293,6 +293,11 @@ do { \ #define CTORS_SECTION_ASM_OP "\t.section\t.ctors,\"aw\"" #define DTORS_SECTION_ASM_OP "\t.section\t.dtors,\"aw\"" +/* There's no point providing a default definition of __CTOR_LIST__ + since people are expected either to use crtbegin.o, or an equivalent, + or provide their own definition. */ +#define CTOR_LISTS_DEFINED_EXTERNALLY + /* A list of other sections which the compiler might be "in" at any given time. */ #undef EXTRA_SECTIONS |