1 # This shell script emits a C file. -*- C -*-
2 # It does some substitutions.
3 if [ -z "$MACHINE" ]; then
6 OUTPUT_ARCH=${ARCH}:${MACHINE}
8 cat >e${EMULATION_NAME}.c <<EOF
9 /* This file is is generated by a shell script. DO NOT EDIT! */
11 /* Linux a.out emulation code for ${EMULATION_NAME}
12 Copyright 1991, 1993, 1994, 1995, 1996, 1998, 1999, 2000
13 Free Software Foundation, Inc.
14 Written by Steve Chamberlain <sac@cygnus.com>
15 Linux support by Eric Youngdale <ericy@cais.cais.com>
17 This file is part of GLD, the Gnu Linker.
19 This program is free software; you can redistribute it and/or modify
20 it under the terms of the GNU General Public License as published by
21 the Free Software Foundation; either version 2 of the License, or
22 (at your option) any later version.
24 This program is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of
26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 GNU General Public License for more details.
29 You should have received a copy of the GNU General Public License
30 along with this program; if not, write to the Free Software
31 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
33 #define TARGET_IS_${EMULATION_NAME}
47 static void gld${EMULATION_NAME}_before_parse PARAMS ((void));
48 static boolean gld${EMULATION_NAME}_open_dynamic_archive
49 PARAMS ((const char *, search_dirs_type *, lang_input_statement_type *));
50 static void gld${EMULATION_NAME}_find_address_statement
51 PARAMS ((lang_statement_union_type *));
52 static void gld${EMULATION_NAME}_create_output_section_statements
54 static void gld${EMULATION_NAME}_before_allocation PARAMS ((void));
55 static char *gld${EMULATION_NAME}_get_script PARAMS ((int *isfile));
58 gld${EMULATION_NAME}_before_parse()
60 const bfd_arch_info_type *arch = bfd_scan_arch ("${OUTPUT_ARCH}");
63 ldfile_output_architecture = arch->arch;
64 ldfile_output_machine = arch->mach;
65 ldfile_output_machine_name = arch->printable_name;
68 ldfile_output_architecture = bfd_arch_${ARCH};
69 config.dynamic_link = true;
70 config.has_shared = true;
73 /* Try to open a dynamic archive. This is where we know that Linux
74 dynamic libraries have an extension of .sa. */
77 gld${EMULATION_NAME}_open_dynamic_archive (arch, search, entry)
79 search_dirs_type *search;
80 lang_input_statement_type *entry;
84 if (! entry->is_archive)
87 string = (char *) xmalloc (strlen (search->name)
88 + strlen (entry->filename)
92 sprintf (string, "%s/lib%s%s.sa", search->name, entry->filename, arch);
94 if (! ldfile_try_open_bfd (string, entry))
100 entry->filename = string;
105 /* This is called by the create_output_section_statements routine via
106 lang_for_each_statement. It locates any address assignment to
107 .text, and modifies it to include the size of the headers. This
108 causes -Ttext to mean the starting address of the header, rather
109 than the starting address of .text, which is compatible with other
113 gld${EMULATION_NAME}_find_address_statement (s)
114 lang_statement_union_type *s;
116 if (s->header.type == lang_address_statement_enum
117 && strcmp (s->address_statement.section_name, ".text") == 0)
119 ASSERT (s->address_statement.address->type.node_class == etree_value);
120 s->address_statement.address->value.value += 0x20;
124 /* This is called before opening the input BFD's. */
127 gld${EMULATION_NAME}_create_output_section_statements ()
129 lang_for_each_statement (gld${EMULATION_NAME}_find_address_statement);
132 /* This is called after the sections have been attached to output
133 sections, but before any sizes or addresses have been set. */
136 gld${EMULATION_NAME}_before_allocation ()
138 if (link_info.relocateable)
141 /* Let the backend work out the sizes of any sections required by
143 if (! bfd_${EMULATION_NAME}_size_dynamic_sections (output_bfd, &link_info))
144 einfo ("%P%F: failed to set dynamic section sizes: %E\n");
148 gld${EMULATION_NAME}_get_script(isfile)
152 if test -n "$COMPILE_IN"
154 # Scripts compiled in.
156 # sed commands to quote an ld script as a C string.
157 sc="-f stringify.sed"
159 cat >>e${EMULATION_NAME}.c <<EOF
163 if (link_info.relocateable == true && config.build_constructors == true)
166 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
167 echo ' ; else if (link_info.relocateable == true) return' >> e${EMULATION_NAME}.c
168 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
169 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
170 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
171 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
172 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
173 echo ' ; else return' >> e${EMULATION_NAME}.c
174 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
175 echo '; }' >> e${EMULATION_NAME}.c
178 # Scripts read from the filesystem.
180 cat >>e${EMULATION_NAME}.c <<EOF
184 if (link_info.relocateable == true && config.build_constructors == true)
185 return "ldscripts/${EMULATION_NAME}.xu";
186 else if (link_info.relocateable == true)
187 return "ldscripts/${EMULATION_NAME}.xr";
188 else if (!config.text_read_only)
189 return "ldscripts/${EMULATION_NAME}.xbn";
190 else if (!config.magic_demand_paged)
191 return "ldscripts/${EMULATION_NAME}.xn";
193 return "ldscripts/${EMULATION_NAME}.x";
199 cat >>e${EMULATION_NAME}.c <<EOF
201 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
203 gld${EMULATION_NAME}_before_parse,
208 after_allocation_default,
209 set_output_arch_default,
210 ldemul_default_target,
211 gld${EMULATION_NAME}_before_allocation,
212 gld${EMULATION_NAME}_get_script,
216 gld${EMULATION_NAME}_create_output_section_statements,
217 gld${EMULATION_NAME}_open_dynamic_archive,
218 NULL, /* place orphan */
219 NULL, /* set symbols */
220 NULL, /* parse args */
221 NULL, /* unrecognized file */
222 NULL, /* list options */
223 NULL, /* recognized file */
224 NULL /* find_potential_libraries */