Fix MMIX build breakage from bfd_set_section_vma change.
[platform/upstream/binutils.git] / ld / emultempl / generic.em
1 # This shell script emits a C file. -*- C -*-
2 # It does some substitutions.
3 fragment <<EOF
4 /* This file is is generated by a shell script.  DO NOT EDIT! */
5
6 /* emulate the original gld for the given ${EMULATION_NAME}
7    Copyright 1991, 1992, 1994, 1996, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
8    2007 Free Software Foundation, Inc.
9    Written by Steve Chamberlain steve@cygnus.com
10
11    This file is part of the GNU Binutils.
12
13    This program is free software; you can redistribute it and/or modify
14    it under the terms of the GNU General Public License as published by
15    the Free Software Foundation; either version 3 of the License, or
16    (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21    GNU General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
26    MA 02110-1301, USA.  */
27
28 #define TARGET_IS_${EMULATION_NAME}
29
30 #include "sysdep.h"
31 #include "bfd.h"
32 #include "bfdlink.h"
33
34 #include "ld.h"
35 #include "ldmain.h"
36 #include "ldmisc.h"
37
38 #include "ldexp.h"
39 #include "ldlang.h"
40 #include "ldfile.h"
41 #include "ldemul.h"
42
43 EOF
44
45 # Import any needed special functions and/or overrides.
46 #
47 if test -n "$EXTRA_EM_FILE" ; then
48   source_em ${srcdir}/emultempl/${EXTRA_EM_FILE}.em
49 fi
50
51 if test x"$LDEMUL_BEFORE_PARSE" != xgld"$EMULATION_NAME"_before_parse; then
52 fragment <<EOF
53
54 static void
55 gld${EMULATION_NAME}_before_parse (void)
56 {
57 #ifndef TARGET_                 /* I.e., if not generic.  */
58   ldfile_set_output_arch ("`echo ${ARCH}`", bfd_arch_unknown);
59 #endif /* not TARGET_ */
60 EOF
61   # The MSP430 port *needs* linker relaxtion in order to cope with large
62   # functions where conditional branches do not fit into a +/- 1024 byte range.
63   case ${target} in
64     msp430-*-* )
65 fragment <<EOF
66   if (! link_info.relocatable)
67     TARGET_ENABLE_RELAXATION;
68 EOF
69     ;;
70   esac
71 fragment <<EOF
72 }
73
74 EOF
75 fi
76
77 if test x"$LDEMUL_GET_SCRIPT" != xgld"$EMULATION_NAME"_get_script; then
78 fragment <<EOF
79
80 static char *
81 gld${EMULATION_NAME}_get_script (int *isfile)
82 EOF
83
84 if test x"$COMPILE_IN" = xyes
85 then
86 # Scripts compiled in.
87
88 # sed commands to quote an ld script as a C string.
89 sc="-f stringify.sed"
90
91 fragment <<EOF
92 {
93   *isfile = 0;
94
95   if (link_info.relocatable && config.build_constructors)
96     return
97 EOF
98 sed $sc ldscripts/${EMULATION_NAME}.xu                 >> e${EMULATION_NAME}.c
99 echo '  ; else if (link_info.relocatable) return'     >> e${EMULATION_NAME}.c
100 sed $sc ldscripts/${EMULATION_NAME}.xr                 >> e${EMULATION_NAME}.c
101 echo '  ; else if (!config.text_read_only) return'     >> e${EMULATION_NAME}.c
102 sed $sc ldscripts/${EMULATION_NAME}.xbn                >> e${EMULATION_NAME}.c
103 echo '  ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
104 sed $sc ldscripts/${EMULATION_NAME}.xn                 >> e${EMULATION_NAME}.c
105 echo '  ; else return'                                 >> e${EMULATION_NAME}.c
106 sed $sc ldscripts/${EMULATION_NAME}.x                  >> e${EMULATION_NAME}.c
107 echo '; }'                                             >> e${EMULATION_NAME}.c
108
109 else
110 # Scripts read from the filesystem.
111
112 fragment <<EOF
113 {
114   *isfile = 1;
115
116   if (link_info.relocatable && config.build_constructors)
117     return "ldscripts/${EMULATION_NAME}.xu";
118   else if (link_info.relocatable)
119     return "ldscripts/${EMULATION_NAME}.xr";
120   else if (!config.text_read_only)
121     return "ldscripts/${EMULATION_NAME}.xbn";
122   else if (!config.magic_demand_paged)
123     return "ldscripts/${EMULATION_NAME}.xn";
124   else
125     return "ldscripts/${EMULATION_NAME}.x";
126 }
127 EOF
128 fi
129 fi
130
131 fragment <<EOF
132
133 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
134 {
135   ${LDEMUL_BEFORE_PARSE-gld${EMULATION_NAME}_before_parse},
136   ${LDEMUL_SYSLIB-syslib_default},
137   ${LDEMUL_HLL-hll_default},
138   ${LDEMUL_AFTER_PARSE-after_parse_default},
139   ${LDEMUL_AFTER_OPEN-after_open_default},
140   ${LDEMUL_AFTER_ALLOCATION-after_allocation_default},
141   ${LDEMUL_SET_OUTPUT_ARCH-set_output_arch_default},
142   ${LDEMUL_CHOOSE_TARGET-ldemul_default_target},
143   ${LDEMUL_BEFORE_ALLOCATION-before_allocation_default},
144   ${LDEMUL_GET_SCRIPT-gld${EMULATION_NAME}_get_script},
145   "${EMULATION_NAME}",
146   "${OUTPUT_FORMAT}",
147   ${LDEMUL_FINISH-finish_default},
148   ${LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS-NULL},
149   ${LDEMUL_OPEN_DYNAMIC_ARCHIVE-NULL},
150   ${LDEMUL_PLACE_ORPHAN-NULL},
151   ${LDEMUL_SET_SYMBOLS-NULL},
152   ${LDEMUL_PARSE_ARGS-NULL},
153   ${LDEMUL_ADD_OPTIONS-NULL},
154   ${LDEMUL_HANDLE_OPTION-NULL},
155   ${LDEMUL_UNRECOGNIZED_FILE-NULL},
156   ${LDEMUL_LIST_OPTIONS-NULL},
157   ${LDEMUL_RECOGNIZED_FILE-NULL},
158   ${LDEMUL_FIND_POTENTIAL_LIBRARIES-NULL},
159   ${LDEMUL_NEW_VERS_PATTERN-NULL}
160 };
161 EOF