diff options
author | Jonathan Larmour <jlarmour@cygnus.co.uk> | 2000-03-03 20:11:12 +0000 |
---|---|---|
committer | Gavin Romig-Koch <gavin@gcc.gnu.org> | 2000-03-03 20:11:12 +0000 |
commit | 105d228299a25eb8990e33d998ab0c9b30dea4c1 (patch) | |
tree | bb0464d978d93945229eefc7a237c7fb68b6367d | |
parent | 20a4db98548493af0f8a2b7d89079817581c601b (diff) | |
download | gcc-105d228299a25eb8990e33d998ab0c9b30dea4c1.zip gcc-105d228299a25eb8990e33d998ab0c9b30dea4c1.tar.gz gcc-105d228299a25eb8990e33d998ab0c9b30dea4c1.tar.bz2 |
elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added.
2000-03-03 Jonathan Larmour <jlarmour@cygnus.co.uk>
* config/mips/elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added.
From-SVN: r32316
-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 |