summaryrefslogtreecommitdiff
path: root/gcc/config/m68k
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-03 20:04:07 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-03 20:04:07 +0000
commit70cbb82d634b056b815fd82b9471a2b24e426537 (patch)
treefb773f9f2c83af0b28f51c89b3f49e3754a17a1c /gcc/config/m68k
parentb77f1c78ef13ebfac635fd2186bbaf7c6df58fbb (diff)
downloadgcc-70cbb82d634b056b815fd82b9471a2b24e426537.tar.gz
Make C++ static constructors work for m68k-elf.
* m68k/m68020-elf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): Undef. (STARTFILE_SPEC, ENDFILE_SPEC): Define to empty string. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25565 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68k')
-rw-r--r--gcc/config/m68k/m68020-elf.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/config/m68k/m68020-elf.h b/gcc/config/m68k/m68020-elf.h
index ac9ae43120c..94b5d44064c 100644
--- a/gcc/config/m68k/m68020-elf.h
+++ b/gcc/config/m68k/m68020-elf.h
@@ -39,4 +39,15 @@ Boston, MA 02111-1307, USA. */
#define LIB_SPEC "-lc"
+/* ??? Quick hack to get constructors working. Make this look more like a
+ COFF target, so the existing dejagnu/libgloss support works. A better
+ solution would be to make the necessary dejagnu and libgloss changes so
+ that we can use normal the ELF constructor mechanism. */
+#undef INIT_SECTION_ASM_OP
+#undef FINI_SECTION_ASM_OP
+#undef STARTFILE_SPEC
+#define STARTFILE_SPEC ""
+#undef ENDFILE_SPEC
+#define ENDFILE_SPEC ""
+
/* end of m68020-elf.h */