* alias.c, c-common.h, c-incpath.c, c-incpath.h, expr.c,
[official-gcc.git] / gcc / config / mips / elf.h
blob5bde5c5cd571998a60e9a291199142d492ed6466
1 /* Target macros for mips*-elf targets.
2 Copyright (C) 1994, 1997, 1999, 2000, 2002, 2003, 2004
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* MIPS assemblers don't have the usual .set foo,bar construct;
23 .set is used for assembler options instead. */
24 #undef SET_ASM_OP
25 #define ASM_OUTPUT_DEF(FILE, LABEL1, LABEL2) \
26 do \
27 { \
28 fputc ('\t', FILE); \
29 assemble_name (FILE, LABEL1); \
30 fputs (" = ", FILE); \
31 assemble_name (FILE, LABEL2); \
32 fputc ('\n', FILE); \
33 } \
34 while (0)
36 #undef ASM_DECLARE_OBJECT_NAME
37 #define ASM_DECLARE_OBJECT_NAME mips_declare_object_name
39 #undef ASM_FINISH_DECLARE_OBJECT
40 #define ASM_FINISH_DECLARE_OBJECT mips_finish_declare_object
42 /* Leave the linker script to choose the appropriate libraries. */
43 #undef LIB_SPEC
44 #define LIB_SPEC ""
46 #undef STARTFILE_SPEC
47 #define STARTFILE_SPEC "crti%O%s crtbegin%O%s"
49 #undef ENDFILE_SPEC
50 #define ENDFILE_SPEC "crtend%O%s crtn%O%s"