]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/emultempl/armelf.em
19990502 sourceware import
[thirdparty/binutils-gdb.git] / ld / emultempl / armelf.em
CommitLineData
252b5132
RH
1# This shell script emits a C file. -*- C -*-
2# It does some substitutions.
3cat >e${EMULATION_NAME}.c <<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 (C) 1991, 93, 96, 97, 1998 Free Software Foundation, Inc.
8 Written by Steve Chamberlain steve@cygnus.com
9
10This file is part of GLD, the Gnu Linker.
11
12This program is free software; you can redistribute it and/or modify
13it under the terms of the GNU General Public License as published by
14the Free Software Foundation; either version 2 of the License, or
15(at your option) any later version.
16
17This program is distributed in the hope that it will be useful,
18but WITHOUT ANY WARRANTY; without even the implied warranty of
19MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20GNU General Public License for more details.
21
22You should have received a copy of the GNU General Public License
23along with this program; if not, write to the Free Software
24Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25
26#define TARGET_IS_${EMULATION_NAME}
27
28#include "bfd.h"
29#include "sysdep.h"
30#include "bfdlink.h"
31#include "getopt.h"
32
33#include "ld.h"
34#include "ldmain.h"
35#include "ldemul.h"
36#include "ldfile.h"
37#include "ldmisc.h"
38
39#include "ldexp.h"
40#include "ldlang.h"
41
42static void gld${EMULATION_NAME}_before_parse PARAMS ((void));
43static void gld${EMULATION_NAME}_before_allocation PARAMS ((void));
44static char *gld${EMULATION_NAME}_get_script PARAMS ((int *isfile));
45
46static void
47gld${EMULATION_NAME}_before_parse ()
48{
49#ifndef TARGET_ /* I.e., if not generic. */
50 ldfile_set_output_arch ("`echo ${ARCH}`");
51#endif /* not TARGET_ */
52}
53
54/* This is called after the sections have been attached to output
55 sections, but before any sizes or addresses have been set. */
56
57static void
58gld${EMULATION_NAME}_before_allocation ()
59{
60 /* we should be able to set the size of the interworking stub section */
61
62 /* Here we rummage through the found bfds to collect glue information */
63 /* FIXME: should this be based on a command line option? krk@cygnus.com */
64 {
65 LANG_FOR_EACH_INPUT_STATEMENT (is)
66 {
67 if (!bfd_elf32_arm_process_before_allocation (is->the_bfd, &link_info))
68 {
69 /* xgettext:c-format */
70 einfo (_("Errors encountered processing file %s"), is->filename);
71 }
72 }
73 }
74
75 /* We have seen it all. Allocate it, and carry on */
76 bfd_elf32_arm_allocate_interworking_sections (& link_info);
77}
78
79static void
80gld${EMULATION_NAME}_after_open ()
81{
82
83 LANG_FOR_EACH_INPUT_STATEMENT (is)
84 {
85 /* The interworking bfd must be the last one to be processed */
86 if (!is->next)
87 bfd_elf32_arm_get_bfd_for_interworking (is->the_bfd, & link_info);
88 }
89}
90
91static char *
92gld${EMULATION_NAME}_get_script (isfile)
93 int *isfile;
94EOF
95
96if test -n "$COMPILE_IN"
97then
98# Scripts compiled in.
99
100# sed commands to quote an ld script as a C string.
101sc="-f ${srcdir}/emultempl/stringify.sed"
102
103cat >>e${EMULATION_NAME}.c <<EOF
104{
105 *isfile = 0;
106
107 if (link_info.relocateable == true && config.build_constructors == true)
108 return
109EOF
110sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
111echo ' ; else if (link_info.relocateable == true) return' >> e${EMULATION_NAME}.c
112sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
113echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
114sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
115echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
116sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
117echo ' ; else return' >> e${EMULATION_NAME}.c
118sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
119echo '; }' >> e${EMULATION_NAME}.c
120
121else
122# Scripts read from the filesystem.
123
124cat >>e${EMULATION_NAME}.c <<EOF
125{
126 *isfile = 1;
127
128 if (link_info.relocateable == true && config.build_constructors == true)
129 return "ldscripts/${EMULATION_NAME}.xu";
130 else if (link_info.relocateable == true)
131 return "ldscripts/${EMULATION_NAME}.xr";
132 else if (!config.text_read_only)
133 return "ldscripts/${EMULATION_NAME}.xbn";
134 else if (!config.magic_demand_paged)
135 return "ldscripts/${EMULATION_NAME}.xn";
136 else
137 return "ldscripts/${EMULATION_NAME}.x";
138}
139EOF
140
141fi
142
143cat >>e${EMULATION_NAME}.c <<EOF
144
145struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
146{
147 gld${EMULATION_NAME}_before_parse,
148 syslib_default,
149 hll_default,
150 after_parse_default,
151 gld${EMULATION_NAME}_after_open,
152 after_allocation_default,
153 set_output_arch_default,
154 ldemul_default_target,
155 gld${EMULATION_NAME}_before_allocation,
156 gld${EMULATION_NAME}_get_script,
157 "${EMULATION_NAME}",
158 "${OUTPUT_FORMAT}",
159 NULL, /* finish */
160 NULL, /* create output section statements */
161 NULL, /* open dynamic archive */
162 NULL, /* place orphan */
163 NULL, /* set_symbols */
164 NULL,
165 NULL, /* unrecognised file */
166 NULL
167};
168EOF