xref: /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/h8300/elf.h (revision f14316bcbc544b96a93e884bc5c2b15fd60e22ae)
1 /* Definitions of target machine for GNU compiler.
2    Renesas H8/300 version generating elf
3    Copyright (C) 2001, 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
4    Contributed by Steve Chamberlain (sac@cygnus.com),
5    Jim Wilson (wilson@cygnus.com), and Doug Evans (dje@cygnus.com).
6 
7 This file is part of GCC.
8 
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13 
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3.  If not see
21 <http://www.gnu.org/licenses/>.  */
22 
23 #ifndef GCC_H8300_ELF_H
24 #define GCC_H8300_ELF_H
25 
26 #undef  ENDFILE_SPEC
27 #define ENDFILE_SPEC "crtend.o%s %{pg:gcrtn.o%s}%{!pg:crtn.o%s}"
28 
29 #undef	STARTFILE_SPEC
30 #define STARTFILE_SPEC "%{!shared: \
31 			 %{!symbolic: \
32 			  %{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}}}\
33 			%{pg:gcrti.o%s}%{!pg:crti.o%s} \
34 			crtbegin.o%s"
35 
36 #undef USER_LABEL_PREFIX
37 #define USER_LABEL_PREFIX "_"
38 
39 #define JUMP_TABLES_IN_TEXT_SECTION (flag_pic)
40 
41 #undef LINK_SPEC
42 #define LINK_SPEC "%{mh:%{mn:-m h8300hnelf}} %{mh:%{!mn:-m h8300helf}} %{ms:%{mn:-m h8300snelf}} %{ms:%{!mn:-m h8300self}} %{msx:%{mn:-m h8300sxnelf;:-m h8300sxelf}}"
43 
44 #endif /* h8300/elf.h */
45