f4f1acad85
* config/m68k/m68020-elf.h (ENDFILE_SPEC): Delete. (INIT_SECTION_ASM_OP): Delete. (FINI_SECTION_ASM_OP): Delete. (STARTFILE_SPEC): Define to hold just crtbegin.o. From-SVN: r30933
40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/* Definitions of target machine for GNU compiler. "naked" 68020,
|
|
elf object files and debugging, version.
|
|
Copyright (C) 1987, 1988, 1992, 1995, 1996 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU CC.
|
|
|
|
GNU CC is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GNU CC is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU CC; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
/* This comment is here to see if it will keep Sun's cpp from dying. */
|
|
|
|
#include "m68k/m68k-none.h"
|
|
#include "m68k/m68kelf.h"
|
|
#include "elfos.h"
|
|
/* m68k/m68kemb.h sets some macros in ways that override the svr4 abi. */
|
|
#include "m68k/m68kemb.h"
|
|
|
|
/* We need to override the default specs from elfos.h. This suppresses the
|
|
loading of crt0.o by gcc's default linker spec. For embedded targets crt0
|
|
now comes from the linker script. */
|
|
|
|
#undef STARTFILE_SPEC
|
|
#define STARTFILE_SPEC "crtbegin.o%s"
|
|
|
|
#define LIB_SPEC "-lc"
|
|
|
|
/* end of m68020-elf.h */
|