1 /* Target macros for mips*-elf targets.
2    Copyright (C) 1994, 1997, 1999, 2000, 2002, 2003, 2004
3    Free Software Foundation, Inc.
4 
5 This file is part of GCC.
6 
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.
11 
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.
16 
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, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.  */
21 
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)
35 
36 #undef ASM_DECLARE_OBJECT_NAME
37 #define ASM_DECLARE_OBJECT_NAME mips_declare_object_name
38 
39 #undef ASM_FINISH_DECLARE_OBJECT
40 #define ASM_FINISH_DECLARE_OBJECT mips_finish_declare_object
41 
42 /* Leave the linker script to choose the appropriate libraries.  */
43 #undef  LIB_SPEC
44 #define LIB_SPEC ""
45 
46 #undef  STARTFILE_SPEC
47 #define STARTFILE_SPEC "crti%O%s crtbegin%O%s"
48 
49 #undef  ENDFILE_SPEC
50 #define ENDFILE_SPEC "crtend%O%s crtn%O%s"
51 
52 #define NO_IMPLICIT_EXTERN_C 1
53