]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | # This shell script emits a C file. -*- C -*- |
2 | # It does some substitutions. | |
3 | # This file is now misnamed, because it supports both 32 bit and 64 bit | |
4 | # ELF emulations. | |
5 | test -z "${ELFSIZE}" && ELFSIZE=32 | |
86af25fe L |
6 | if [ -z "$MACHINE" ]; then |
7 | OUTPUT_ARCH=${ARCH} | |
8 | else | |
9 | OUTPUT_ARCH=${ARCH}:${MACHINE} | |
10 | fi | |
252b5132 RH |
11 | cat >e${EMULATION_NAME}.c <<EOF |
12 | /* This file is is generated by a shell script. DO NOT EDIT! */ | |
13 | ||
14 | /* ${ELFSIZE} bit ELF emulation code for ${EMULATION_NAME} | |
e3dc8847 | 15 | Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
dfcffada | 16 | 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. |
252b5132 RH |
17 | Written by Steve Chamberlain <[email protected]> |
18 | ELF support by Ian Lance Taylor <[email protected]> | |
19 | ||
20 | This file is part of GLD, the Gnu Linker. | |
21 | ||
22 | This program is free software; you can redistribute it and/or modify | |
23 | it under the terms of the GNU General Public License as published by | |
24 | the Free Software Foundation; either version 2 of the License, or | |
25 | (at your option) any later version. | |
26 | ||
27 | This program is distributed in the hope that it will be useful, | |
28 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
29 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
30 | GNU General Public License for more details. | |
31 | ||
32 | You should have received a copy of the GNU General Public License | |
33 | along with this program; if not, write to the Free Software | |
75be928b | 34 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ |
252b5132 RH |
35 | |
36 | #define TARGET_IS_${EMULATION_NAME} | |
37 | ||
34875e64 | 38 | #include "config.h" |
252b5132 RH |
39 | #include "bfd.h" |
40 | #include "sysdep.h" | |
1c9acd94 | 41 | #include "libiberty.h" |
3882b010 | 42 | #include "safe-ctype.h" |
fcf65871 | 43 | #include "getopt.h" |
252b5132 RH |
44 | |
45 | #include "bfdlink.h" | |
46 | ||
47 | #include "ld.h" | |
48 | #include "ldmain.h" | |
252b5132 RH |
49 | #include "ldmisc.h" |
50 | #include "ldexp.h" | |
51 | #include "ldlang.h" | |
b71e2778 AM |
52 | #include "ldfile.h" |
53 | #include "ldemul.h" | |
df2a7313 | 54 | #include <ldgram.h> |
e0ee487b | 55 | #include "elf/common.h" |
ecca9871 | 56 | #include "elf-bfd.h" |
252b5132 | 57 | |
0c7a8e5a AM |
58 | /* Declare functions used by various EXTRA_EM_FILEs. */ |
59 | static void gld${EMULATION_NAME}_before_parse (void); | |
60 | static void gld${EMULATION_NAME}_after_open (void); | |
61 | static void gld${EMULATION_NAME}_before_allocation (void); | |
7b986e99 | 62 | static bfd_boolean gld${EMULATION_NAME}_place_orphan (asection *s); |
8ded5a0f | 63 | static void gld${EMULATION_NAME}_finish (void); |
252b5132 | 64 | |
41392f03 AM |
65 | EOF |
66 | ||
d3989512 JJ |
67 | if [ "x${USE_LIBPATH}" = xyes ] ; then |
68 | case ${target} in | |
711c0baa | 69 | *-*-linux-* | *-*-k*bsd*-*) |
d3989512 | 70 | cat >>e${EMULATION_NAME}.c <<EOF |
0b48acfe | 71 | #ifdef HAVE_GLOB |
d3989512 | 72 | #include <glob.h> |
0b48acfe | 73 | #endif |
d3989512 JJ |
74 | EOF |
75 | ;; | |
76 | esac | |
77 | fi | |
78 | ||
41392f03 AM |
79 | # Import any needed special functions and/or overrides. |
80 | # | |
8ded5a0f | 81 | . ${srcdir}/emultempl/elf-generic.em |
41392f03 AM |
82 | if test -n "$EXTRA_EM_FILE" ; then |
83 | . ${srcdir}/emultempl/${EXTRA_EM_FILE}.em | |
84 | fi | |
85 | ||
f813923c | 86 | # Functions in this file can be overridden by setting the LDEMUL_* shell |
41392f03 AM |
87 | # variables. If the name of the overriding function is the same as is |
88 | # defined in this file, then don't output this file's version. | |
89 | # If a different overriding name is given then output the standard function | |
90 | # as presumably it is called from the overriding function. | |
91 | # | |
92 | if test x"$LDEMUL_BEFORE_PARSE" != xgld"$EMULATION_NAME"_before_parse; then | |
93 | cat >>e${EMULATION_NAME}.c <<EOF | |
94 | ||
252b5132 | 95 | static void |
0c7a8e5a | 96 | gld${EMULATION_NAME}_before_parse (void) |
252b5132 | 97 | { |
5e2f1575 | 98 | ldfile_set_output_arch ("${OUTPUT_ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`); |
b34976b6 AM |
99 | config.dynamic_link = ${DYNAMIC_LINK-TRUE}; |
100 | config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`; | |
252b5132 RH |
101 | } |
102 | ||
41392f03 AM |
103 | EOF |
104 | fi | |
105 | ||
4a43e768 AM |
106 | if test x"$LDEMUL_RECOGNIZED_FILE" != xgld"${EMULATION_NAME}"_load_symbols; then |
107 | cat >>e${EMULATION_NAME}.c <<EOF | |
108 | /* Handle as_needed DT_NEEDED. */ | |
109 | ||
110 | static bfd_boolean | |
111 | gld${EMULATION_NAME}_load_symbols (lang_input_statement_type *entry) | |
112 | { | |
e56f61be | 113 | int class = 0; |
4a43e768 AM |
114 | |
115 | /* Tell the ELF linker that we don't want the output file to have a | |
116 | DT_NEEDED entry for this file, unless it is used to resolve | |
117 | references in a regular object. */ | |
e56f61be L |
118 | if (entry->as_needed) |
119 | class = DYN_AS_NEEDED; | |
120 | ||
121 | /* Tell the ELF linker that we don't want the output file to have a | |
122 | DT_NEEDED entry for any dynamic library in DT_NEEDED tags from | |
123 | this file at all. */ | |
124 | if (!entry->add_needed) | |
125 | class |= DYN_NO_ADD_NEEDED; | |
126 | ||
12b9ff6c L |
127 | if (entry->just_syms_flag |
128 | && (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) != 0) | |
129 | einfo (_("%P%F: --just-symbols may not be used on DSO: %B\n"), | |
130 | entry->the_bfd); | |
131 | ||
e56f61be L |
132 | if (!class |
133 | || (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) == 0) | |
134 | return FALSE; | |
135 | ||
136 | bfd_elf_set_dyn_lib_class (entry->the_bfd, class); | |
4a43e768 AM |
137 | |
138 | /* Continue on with normal load_symbols processing. */ | |
139 | return FALSE; | |
140 | } | |
141 | EOF | |
142 | fi | |
143 | ||
41392f03 | 144 | cat >>e${EMULATION_NAME}.c <<EOF |
252b5132 RH |
145 | |
146 | /* These variables are required to pass information back and forth | |
147 | between after_open and check_needed and stat_needed and vercheck. */ | |
148 | ||
149 | static struct bfd_link_needed_list *global_needed; | |
150 | static struct stat global_stat; | |
e13629bc | 151 | static lang_input_statement_type *global_found; |
252b5132 | 152 | static struct bfd_link_needed_list *global_vercheck_needed; |
b34976b6 | 153 | static bfd_boolean global_vercheck_failed; |
252b5132 | 154 | |
252b5132 | 155 | |
04925e1e AM |
156 | /* On Linux, it's possible to have different versions of the same |
157 | shared library linked against different versions of libc. The | |
158 | dynamic linker somehow tags which libc version to use in | |
159 | /etc/ld.so.cache, and, based on the libc that it sees in the | |
160 | executable, chooses which version of the shared library to use. | |
252b5132 | 161 | |
04925e1e AM |
162 | We try to do a similar check here by checking whether this shared |
163 | library needs any other shared libraries which may conflict with | |
164 | libraries we have already included in the link. If it does, we | |
165 | skip it, and try to find another shared library farther on down the | |
166 | link path. | |
252b5132 | 167 | |
04925e1e AM |
168 | This is called via lang_for_each_input_file. |
169 | GLOBAL_VERCHECK_NEEDED is the list of objects needed by the object | |
f813923c | 170 | which we are checking. This sets GLOBAL_VERCHECK_FAILED if we find |
04925e1e | 171 | a conflicting version. */ |
252b5132 | 172 | |
04925e1e | 173 | static void |
0c7a8e5a | 174 | gld${EMULATION_NAME}_vercheck (lang_input_statement_type *s) |
04925e1e | 175 | { |
1c9acd94 | 176 | const char *soname; |
04925e1e | 177 | struct bfd_link_needed_list *l; |
252b5132 | 178 | |
04925e1e AM |
179 | if (global_vercheck_failed) |
180 | return; | |
181 | if (s->the_bfd == NULL | |
182 | || (bfd_get_file_flags (s->the_bfd) & DYNAMIC) == 0) | |
183 | return; | |
252b5132 | 184 | |
04925e1e AM |
185 | soname = bfd_elf_get_dt_soname (s->the_bfd); |
186 | if (soname == NULL) | |
fed2999d | 187 | soname = lbasename (bfd_get_filename (s->the_bfd)); |
04925e1e AM |
188 | |
189 | for (l = global_vercheck_needed; l != NULL; l = l->next) | |
190 | { | |
191 | const char *suffix; | |
192 | ||
1c9acd94 | 193 | if (strcmp (soname, l->name) == 0) |
04925e1e AM |
194 | { |
195 | /* Probably can't happen, but it's an easy check. */ | |
196 | continue; | |
252b5132 RH |
197 | } |
198 | ||
04925e1e | 199 | if (strchr (l->name, '/') != NULL) |
252b5132 RH |
200 | continue; |
201 | ||
04925e1e AM |
202 | suffix = strstr (l->name, ".so."); |
203 | if (suffix == NULL) | |
204 | continue; | |
205 | ||
206 | suffix += sizeof ".so." - 1; | |
207 | ||
1c9acd94 | 208 | if (strncmp (soname, l->name, suffix - l->name) == 0) |
04925e1e AM |
209 | { |
210 | /* Here we know that S is a dynamic object FOO.SO.VER1, and | |
0c7a8e5a AM |
211 | the object we are considering needs a dynamic object |
212 | FOO.SO.VER2, and VER1 and VER2 are different. This | |
213 | appears to be a version mismatch, so we tell the caller | |
214 | to try a different version of this library. */ | |
b34976b6 | 215 | global_vercheck_failed = TRUE; |
04925e1e AM |
216 | return; |
217 | } | |
252b5132 RH |
218 | } |
219 | } | |
220 | ||
252b5132 | 221 | |
04925e1e AM |
222 | /* See if an input file matches a DT_NEEDED entry by running stat on |
223 | the file. */ | |
224 | ||
225 | static void | |
0c7a8e5a | 226 | gld${EMULATION_NAME}_stat_needed (lang_input_statement_type *s) |
252b5132 | 227 | { |
04925e1e AM |
228 | struct stat st; |
229 | const char *suffix; | |
230 | const char *soname; | |
252b5132 | 231 | |
e13629bc | 232 | if (global_found != NULL) |
04925e1e AM |
233 | return; |
234 | if (s->the_bfd == NULL) | |
235 | return; | |
e13629bc AM |
236 | |
237 | /* If this input file was an as-needed entry, and wasn't found to be | |
238 | needed at the stage it was linked, then don't say we have loaded it. */ | |
239 | if ((bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0) | |
7cedef86 | 240 | return; |
04925e1e AM |
241 | |
242 | if (bfd_stat (s->the_bfd, &st) != 0) | |
252b5132 | 243 | { |
04925e1e AM |
244 | einfo ("%P:%B: bfd_stat failed: %E\n", s->the_bfd); |
245 | return; | |
246 | } | |
252b5132 | 247 | |
9eabd475 ZW |
248 | /* Some operating systems, e.g. Windows, do not provide a meaningful |
249 | st_ino; they always set it to zero. (Windows does provide a | |
250 | meaningful st_dev.) Do not indicate a duplicate library in that | |
251 | case. While there is no guarantee that a system that provides | |
252 | meaningful inode numbers will never set st_ino to zero, this is | |
253 | merely an optimization, so we do not need to worry about false | |
254 | negatives. */ | |
04925e1e | 255 | if (st.st_dev == global_stat.st_dev |
9eabd475 ZW |
256 | && st.st_ino == global_stat.st_ino |
257 | && st.st_ino != 0) | |
04925e1e | 258 | { |
e13629bc | 259 | global_found = s; |
04925e1e AM |
260 | return; |
261 | } | |
252b5132 | 262 | |
04925e1e AM |
263 | /* We issue a warning if it looks like we are including two |
264 | different versions of the same shared library. For example, | |
265 | there may be a problem if -lc picks up libc.so.6 but some other | |
266 | shared library has a DT_NEEDED entry of libc.so.5. This is a | |
f813923c | 267 | heuristic test, and it will only work if the name looks like |
04925e1e AM |
268 | NAME.so.VERSION. FIXME: Depending on file names is error-prone. |
269 | If we really want to issue warnings about mixing version numbers | |
270 | of shared libraries, we need to find a better way. */ | |
252b5132 | 271 | |
04925e1e AM |
272 | if (strchr (global_needed->name, '/') != NULL) |
273 | return; | |
274 | suffix = strstr (global_needed->name, ".so."); | |
275 | if (suffix == NULL) | |
276 | return; | |
277 | suffix += sizeof ".so." - 1; | |
252b5132 | 278 | |
04925e1e AM |
279 | soname = bfd_elf_get_dt_soname (s->the_bfd); |
280 | if (soname == NULL) | |
fed2999d | 281 | soname = lbasename (s->filename); |
252b5132 | 282 | |
cde43e70 | 283 | if (strncmp (soname, global_needed->name, suffix - global_needed->name) == 0) |
04925e1e | 284 | einfo ("%P: warning: %s, needed by %B, may conflict with %s\n", |
1c9acd94 | 285 | global_needed->name, global_needed->by, soname); |
252b5132 RH |
286 | } |
287 | ||
e56f61be L |
288 | struct dt_needed |
289 | { | |
290 | bfd *by; | |
291 | const char *name; | |
292 | }; | |
04925e1e | 293 | |
252b5132 RH |
294 | /* This function is called for each possible name for a dynamic object |
295 | named by a DT_NEEDED entry. The FORCE parameter indicates whether | |
296 | to skip the check for a conflicting version. */ | |
297 | ||
b34976b6 | 298 | static bfd_boolean |
e56f61be L |
299 | gld${EMULATION_NAME}_try_needed (struct dt_needed *needed, |
300 | int force) | |
252b5132 RH |
301 | { |
302 | bfd *abfd; | |
e56f61be | 303 | const char *name = needed->name; |
ec4eb78a | 304 | const char *soname; |
e56f61be | 305 | int class; |
252b5132 RH |
306 | |
307 | abfd = bfd_openr (name, bfd_get_target (output_bfd)); | |
308 | if (abfd == NULL) | |
b34976b6 | 309 | return FALSE; |
252b5132 RH |
310 | if (! bfd_check_format (abfd, bfd_object)) |
311 | { | |
cde43e70 | 312 | bfd_close (abfd); |
b34976b6 | 313 | return FALSE; |
252b5132 RH |
314 | } |
315 | if ((bfd_get_file_flags (abfd) & DYNAMIC) == 0) | |
316 | { | |
cde43e70 | 317 | bfd_close (abfd); |
b34976b6 | 318 | return FALSE; |
252b5132 RH |
319 | } |
320 | ||
c4bb8067 L |
321 | /* For DT_NEEDED, they have to match. */ |
322 | if (abfd->xvec != output_bfd->xvec) | |
323 | { | |
324 | bfd_close (abfd); | |
b34976b6 | 325 | return FALSE; |
c4bb8067 L |
326 | } |
327 | ||
252b5132 RH |
328 | /* Check whether this object would include any conflicting library |
329 | versions. If FORCE is set, then we skip this check; we use this | |
330 | the second time around, if we couldn't find any compatible | |
331 | instance of the shared library. */ | |
332 | ||
333 | if (! force) | |
334 | { | |
335 | struct bfd_link_needed_list *needed; | |
336 | ||
337 | if (! bfd_elf_get_bfd_needed_list (abfd, &needed)) | |
338 | einfo ("%F%P:%B: bfd_elf_get_bfd_needed_list failed: %E\n", abfd); | |
339 | ||
340 | if (needed != NULL) | |
341 | { | |
342 | global_vercheck_needed = needed; | |
b34976b6 | 343 | global_vercheck_failed = FALSE; |
252b5132 RH |
344 | lang_for_each_input_file (gld${EMULATION_NAME}_vercheck); |
345 | if (global_vercheck_failed) | |
346 | { | |
cde43e70 | 347 | bfd_close (abfd); |
b34976b6 | 348 | /* Return FALSE to force the caller to move on to try |
0c7a8e5a | 349 | another file on the search path. */ |
b34976b6 | 350 | return FALSE; |
252b5132 RH |
351 | } |
352 | ||
353 | /* But wait! It gets much worse. On Linux, if a shared | |
0c7a8e5a AM |
354 | library does not use libc at all, we are supposed to skip |
355 | it the first time around in case we encounter a shared | |
356 | library later on with the same name which does use the | |
357 | version of libc that we want. This is much too horrible | |
358 | to use on any system other than Linux. */ | |
252b5132 RH |
359 | |
360 | EOF | |
361 | case ${target} in | |
711c0baa | 362 | *-*-linux-* | *-*-k*bsd*-*) |
252b5132 RH |
363 | cat >>e${EMULATION_NAME}.c <<EOF |
364 | { | |
365 | struct bfd_link_needed_list *l; | |
366 | ||
367 | for (l = needed; l != NULL; l = l->next) | |
368 | if (strncmp (l->name, "libc.so", 7) == 0) | |
369 | break; | |
370 | if (l == NULL) | |
371 | { | |
cde43e70 | 372 | bfd_close (abfd); |
b34976b6 | 373 | return FALSE; |
252b5132 RH |
374 | } |
375 | } | |
376 | ||
377 | EOF | |
378 | ;; | |
379 | esac | |
380 | cat >>e${EMULATION_NAME}.c <<EOF | |
381 | } | |
382 | } | |
383 | ||
384 | /* We've found a dynamic object matching the DT_NEEDED entry. */ | |
385 | ||
04925e1e AM |
386 | /* We have already checked that there is no other input file of the |
387 | same name. We must now check again that we are not including the | |
388 | same file twice. We need to do this because on many systems | |
389 | libc.so is a symlink to, e.g., libc.so.1. The SONAME entry will | |
390 | reference libc.so.1. If we have already included libc.so, we | |
391 | don't want to include libc.so.1 if they are the same file, and we | |
392 | can only check that using stat. */ | |
393 | ||
394 | if (bfd_stat (abfd, &global_stat) != 0) | |
395 | einfo ("%F%P:%B: bfd_stat failed: %E\n", abfd); | |
ec4eb78a L |
396 | |
397 | /* First strip off everything before the last '/'. */ | |
fed2999d | 398 | soname = lbasename (abfd->filename); |
ec4eb78a L |
399 | |
400 | if (trace_file_tries) | |
401 | info_msg (_("found %s at %s\n"), soname, name); | |
402 | ||
e13629bc | 403 | global_found = NULL; |
04925e1e | 404 | lang_for_each_input_file (gld${EMULATION_NAME}_stat_needed); |
e13629bc | 405 | if (global_found != NULL) |
04925e1e | 406 | { |
b34976b6 | 407 | /* Return TRUE to indicate that we found the file, even though |
0c7a8e5a | 408 | we aren't going to do anything with it. */ |
b34976b6 | 409 | return TRUE; |
04925e1e AM |
410 | } |
411 | ||
4a43e768 AM |
412 | /* Specify the soname to use. */ |
413 | bfd_elf_set_dt_needed_name (abfd, soname); | |
04925e1e | 414 | |
4a43e768 AM |
415 | /* Tell the ELF linker that we don't want the output file to have a |
416 | DT_NEEDED entry for this file, unless it is used to resolve | |
417 | references in a regular object. */ | |
e56f61be L |
418 | class = DYN_DT_NEEDED; |
419 | ||
420 | /* Tell the ELF linker that we don't want the output file to have a | |
421 | DT_NEEDED entry for this file at all if the entry is from a file | |
422 | with DYN_NO_ADD_NEEDED. */ | |
7e9f0867 AM |
423 | if (needed->by != NULL |
424 | && (bfd_elf_get_dyn_lib_class (needed->by) & DYN_NO_ADD_NEEDED) != 0) | |
e56f61be L |
425 | class |= DYN_NO_NEEDED | DYN_NO_ADD_NEEDED; |
426 | ||
427 | bfd_elf_set_dyn_lib_class (abfd, class); | |
04925e1e AM |
428 | |
429 | /* Add this file into the symbol table. */ | |
430 | if (! bfd_link_add_symbols (abfd, &link_info)) | |
431 | einfo ("%F%B: could not read symbols: %E\n", abfd); | |
432 | ||
b34976b6 | 433 | return TRUE; |
04925e1e AM |
434 | } |
435 | ||
436 | ||
437 | /* Search for a needed file in a path. */ | |
438 | ||
b34976b6 | 439 | static bfd_boolean |
e56f61be L |
440 | gld${EMULATION_NAME}_search_needed (const char *path, |
441 | struct dt_needed *n, int force) | |
04925e1e AM |
442 | { |
443 | const char *s; | |
e56f61be | 444 | const char *name = n->name; |
04925e1e | 445 | size_t len; |
e56f61be | 446 | struct dt_needed needed; |
04925e1e | 447 | |
cc5ce052 | 448 | if (name[0] == '/') |
e56f61be | 449 | return gld${EMULATION_NAME}_try_needed (n, force); |
cc5ce052 | 450 | |
04925e1e | 451 | if (path == NULL || *path == '\0') |
b34976b6 | 452 | return FALSE; |
e56f61be L |
453 | |
454 | needed.by = n->by; | |
455 | needed.name = n->name; | |
456 | ||
04925e1e AM |
457 | len = strlen (name); |
458 | while (1) | |
459 | { | |
460 | char *filename, *sset; | |
461 | ||
462 | s = strchr (path, ':'); | |
463 | if (s == NULL) | |
464 | s = path + strlen (path); | |
465 | ||
466 | filename = (char *) xmalloc (s - path + len + 2); | |
467 | if (s == path) | |
468 | sset = filename; | |
469 | else | |
470 | { | |
471 | memcpy (filename, path, s - path); | |
472 | filename[s - path] = '/'; | |
473 | sset = filename + (s - path) + 1; | |
474 | } | |
475 | strcpy (sset, name); | |
476 | ||
e56f61be L |
477 | needed.name = filename; |
478 | if (gld${EMULATION_NAME}_try_needed (&needed, force)) | |
b34976b6 | 479 | return TRUE; |
04925e1e AM |
480 | |
481 | free (filename); | |
482 | ||
483 | if (*s == '\0') | |
484 | break; | |
485 | path = s + 1; | |
486 | } | |
487 | ||
b34976b6 | 488 | return FALSE; |
04925e1e AM |
489 | } |
490 | ||
491 | EOF | |
9c8ebd6a | 492 | if [ "x${USE_LIBPATH}" = xyes ] ; then |
3dc16cab | 493 | cat >>e${EMULATION_NAME}.c <<EOF |
9c8ebd6a DJ |
494 | |
495 | /* Add the sysroot to every entry in a colon-separated path. */ | |
496 | ||
497 | static char * | |
0c7a8e5a | 498 | gld${EMULATION_NAME}_add_sysroot (const char *path) |
9c8ebd6a DJ |
499 | { |
500 | int len, colons, i; | |
501 | char *ret, *p; | |
502 | ||
503 | len = strlen (path); | |
504 | colons = 0; | |
505 | i = 0; | |
506 | while (path[i]) | |
507 | if (path[i++] == ':') | |
508 | colons++; | |
509 | ||
510 | if (path[i]) | |
511 | colons++; | |
512 | ||
42644a89 | 513 | len = len + (colons + 1) * strlen (ld_sysroot); |
9c8ebd6a DJ |
514 | ret = xmalloc (len + 1); |
515 | strcpy (ret, ld_sysroot); | |
516 | p = ret + strlen (ret); | |
517 | i = 0; | |
518 | while (path[i]) | |
519 | if (path[i] == ':') | |
520 | { | |
0c7a8e5a | 521 | *p++ = path[i++]; |
9c8ebd6a DJ |
522 | strcpy (p, ld_sysroot); |
523 | p = p + strlen (p); | |
9c8ebd6a DJ |
524 | } |
525 | else | |
526 | *p++ = path[i++]; | |
527 | ||
528 | *p = 0; | |
529 | return ret; | |
530 | } | |
04925e1e | 531 | |
3dc16cab DJ |
532 | EOF |
533 | case ${target} in | |
ebe1fac1 NC |
534 | *-*-freebsd* | *-*-dragonfly*) |
535 | cat >>e${EMULATION_NAME}.c <<EOF | |
536 | /* Read the system search path the FreeBSD way rather than the Linux way. */ | |
537 | #ifdef HAVE_ELF_HINTS_H | |
538 | #include <elf-hints.h> | |
539 | #else | |
540 | #include "elf-hints-local.h" | |
541 | #endif | |
542 | ||
543 | static bfd_boolean | |
544 | gld${EMULATION_NAME}_check_ld_elf_hints (const char *name, int force) | |
545 | { | |
546 | static bfd_boolean initialized; | |
547 | static char *ld_elf_hints; | |
548 | struct dt_needed needed; | |
549 | ||
550 | if (!initialized) | |
551 | { | |
552 | FILE *f; | |
553 | char *tmppath; | |
554 | ||
555 | tmppath = concat (ld_sysroot, _PATH_ELF_HINTS, NULL); | |
556 | f = fopen (tmppath, FOPEN_RB); | |
557 | free (tmppath); | |
558 | if (f != NULL) | |
559 | { | |
560 | struct elfhints_hdr hdr; | |
561 | ||
562 | if (fread (&hdr, 1, sizeof (hdr), f) == sizeof (hdr) | |
563 | && hdr.magic == ELFHINTS_MAGIC | |
564 | && hdr.version == 1) | |
565 | { | |
566 | if (fseek (f, hdr.strtab + hdr.dirlist, SEEK_SET) != -1) | |
567 | { | |
568 | char *b; | |
569 | ||
570 | b = xmalloc (hdr.dirlistlen + 1); | |
571 | if (fread (b, 1, hdr.dirlistlen + 1, f) == | |
572 | hdr.dirlistlen + 1) | |
573 | ld_elf_hints = gld${EMULATION_NAME}_add_sysroot (b); | |
e13629bc | 574 | |
ebe1fac1 NC |
575 | free (b); |
576 | } | |
577 | } | |
578 | fclose (f); | |
579 | } | |
580 | ||
581 | initialized = TRUE; | |
582 | } | |
583 | ||
584 | if (ld_elf_hints == NULL) | |
585 | return FALSE; | |
586 | ||
587 | needed.by = NULL; | |
588 | needed.name = name; | |
589 | return gld${EMULATION_NAME}_search_needed (ld_elf_hints, & needed, | |
e13629bc | 590 | force); |
ebe1fac1 NC |
591 | } |
592 | EOF | |
593 | # FreeBSD | |
594 | ;; | |
595 | ||
711c0baa | 596 | *-*-linux-* | *-*-k*bsd*-*) |
3dc16cab | 597 | cat >>e${EMULATION_NAME}.c <<EOF |
04925e1e AM |
598 | /* For a native linker, check the file /etc/ld.so.conf for directories |
599 | in which we may find shared libraries. /etc/ld.so.conf is really | |
482e8b32 | 600 | only meaningful on Linux. */ |
04925e1e | 601 | |
d3989512 | 602 | struct gld${EMULATION_NAME}_ld_so_conf |
04925e1e | 603 | { |
d3989512 JJ |
604 | char *path; |
605 | size_t len, alloc; | |
606 | }; | |
04925e1e | 607 | |
dfcffada | 608 | static bfd_boolean |
d3989512 JJ |
609 | gld${EMULATION_NAME}_parse_ld_so_conf |
610 | (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename); | |
611 | ||
612 | static void | |
613 | gld${EMULATION_NAME}_parse_ld_so_conf_include | |
614 | (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename, | |
615 | const char *pattern) | |
616 | { | |
617 | char *newp = NULL; | |
0b48acfe | 618 | #ifdef HAVE_GLOB |
d3989512 | 619 | glob_t gl; |
0b48acfe | 620 | #endif |
d3989512 JJ |
621 | |
622 | if (pattern[0] != '/') | |
04925e1e | 623 | { |
d3989512 JJ |
624 | char *p = strrchr (filename, '/'); |
625 | size_t patlen = strlen (pattern) + 1; | |
04925e1e | 626 | |
d3989512 JJ |
627 | newp = xmalloc (p - filename + 1 + patlen); |
628 | memcpy (newp, filename, p - filename + 1); | |
629 | memcpy (newp + (p - filename + 1), pattern, patlen); | |
630 | pattern = newp; | |
631 | } | |
04925e1e | 632 | |
0b48acfe | 633 | #ifdef HAVE_GLOB |
d3989512 JJ |
634 | if (glob (pattern, 0, NULL, &gl) == 0) |
635 | { | |
636 | size_t i; | |
637 | ||
638 | for (i = 0; i < gl.gl_pathc; ++i) | |
639 | gld${EMULATION_NAME}_parse_ld_so_conf (info, gl.gl_pathv[i]); | |
640 | globfree (&gl); | |
641 | } | |
0b48acfe MM |
642 | #else |
643 | /* If we do not have glob, treat the pattern as a literal filename. */ | |
644 | gld${EMULATION_NAME}_parse_ld_so_conf (info, pattern); | |
645 | #endif | |
d3989512 JJ |
646 | |
647 | if (newp) | |
648 | free (newp); | |
649 | } | |
650 | ||
dfcffada | 651 | static bfd_boolean |
d3989512 JJ |
652 | gld${EMULATION_NAME}_parse_ld_so_conf |
653 | (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename) | |
654 | { | |
655 | FILE *f = fopen (filename, FOPEN_RT); | |
563f4125 JJ |
656 | char *line; |
657 | size_t linelen; | |
d3989512 JJ |
658 | |
659 | if (f == NULL) | |
dfcffada | 660 | return FALSE; |
d3989512 | 661 | |
563f4125 JJ |
662 | linelen = 256; |
663 | line = xmalloc (linelen); | |
664 | do | |
d3989512 | 665 | { |
563f4125 JJ |
666 | char *p = line, *q; |
667 | ||
668 | /* Normally this would use getline(3), but we need to be portable. */ | |
669 | while ((q = fgets (p, linelen - (p - line), f)) != NULL | |
670 | && strlen (q) == linelen - (p - line) - 1 | |
671 | && line[linelen - 2] != '\n') | |
672 | { | |
673 | line = xrealloc (line, 2 * linelen); | |
674 | p = line + linelen - 1; | |
675 | linelen += linelen; | |
676 | } | |
677 | ||
678 | if (q == NULL && p == line) | |
679 | break; | |
d3989512 JJ |
680 | |
681 | p = strchr (line, '\n'); | |
682 | if (p) | |
683 | *p = '\0'; | |
684 | ||
685 | /* Because the file format does not know any form of quoting we | |
686 | can search forward for the next '#' character and if found | |
687 | make it terminating the line. */ | |
688 | p = strchr (line, '#'); | |
689 | if (p) | |
690 | *p = '\0'; | |
691 | ||
692 | /* Remove leading whitespace. NUL is no whitespace character. */ | |
693 | p = line; | |
694 | while (*p == ' ' || *p == '\f' || *p == '\r' || *p == '\t' || *p == '\v') | |
695 | ++p; | |
696 | ||
697 | /* If the line is blank it is ignored. */ | |
698 | if (p[0] == '\0') | |
699 | continue; | |
04925e1e | 700 | |
d3989512 JJ |
701 | if (!strncmp (p, "include", 7) && (p[7] == ' ' || p[7] == '\t')) |
702 | { | |
703 | char *dir, c; | |
704 | p += 8; | |
705 | do | |
04925e1e | 706 | { |
d3989512 JJ |
707 | while (*p == ' ' || *p == '\t') |
708 | ++p; | |
04925e1e | 709 | |
d3989512 JJ |
710 | if (*p == '\0') |
711 | break; | |
252b5132 | 712 | |
d3989512 JJ |
713 | dir = p; |
714 | ||
715 | while (*p != ' ' && *p != '\t' && *p) | |
716 | ++p; | |
717 | ||
718 | c = *p; | |
719 | *p++ = '\0'; | |
720 | if (dir[0] != '\0') | |
721 | gld${EMULATION_NAME}_parse_ld_so_conf_include (info, filename, | |
722 | dir); | |
723 | } | |
724 | while (c != '\0'); | |
725 | } | |
726 | else | |
727 | { | |
728 | char *dir = p; | |
729 | while (*p && *p != '=' && *p != ' ' && *p != '\t' && *p != '\f' | |
730 | && *p != '\r' && *p != '\v') | |
731 | ++p; | |
732 | ||
733 | while (p != dir && p[-1] == '/') | |
734 | --p; | |
735 | if (info->path == NULL) | |
736 | { | |
737 | info->alloc = p - dir + 1 + 256; | |
738 | info->path = xmalloc (info->alloc); | |
739 | info->len = 0; | |
740 | } | |
04925e1e AM |
741 | else |
742 | { | |
d3989512 JJ |
743 | if (info->len + 1 + (p - dir) >= info->alloc) |
744 | { | |
745 | info->alloc += p - dir + 256; | |
746 | info->path = xrealloc (info->path, info->alloc); | |
747 | } | |
748 | info->path[info->len++] = ':'; | |
04925e1e | 749 | } |
d3989512 JJ |
750 | memcpy (info->path + info->len, dir, p - dir); |
751 | info->len += p - dir; | |
752 | info->path[info->len] = '\0'; | |
753 | } | |
754 | } | |
563f4125 | 755 | while (! feof (f)); |
d3989512 JJ |
756 | free (line); |
757 | fclose (f); | |
dfcffada | 758 | return TRUE; |
d3989512 | 759 | } |
252b5132 | 760 | |
d3989512 JJ |
761 | static bfd_boolean |
762 | gld${EMULATION_NAME}_check_ld_so_conf (const char *name, int force) | |
763 | { | |
764 | static bfd_boolean initialized; | |
765 | static char *ld_so_conf; | |
766 | struct dt_needed needed; | |
252b5132 | 767 | |
d3989512 JJ |
768 | if (! initialized) |
769 | { | |
770 | char *tmppath; | |
771 | struct gld${EMULATION_NAME}_ld_so_conf info; | |
9c8ebd6a | 772 | |
d3989512 JJ |
773 | info.path = NULL; |
774 | info.len = info.alloc = 0; | |
dfcffada AM |
775 | tmppath = concat (ld_sysroot, "${prefix}/etc/ld.so.conf", NULL); |
776 | if (!gld${EMULATION_NAME}_parse_ld_so_conf (&info, tmppath)) | |
777 | { | |
778 | free (tmppath); | |
779 | tmppath = concat (ld_sysroot, "/etc/ld.so.conf", NULL); | |
780 | gld${EMULATION_NAME}_parse_ld_so_conf (&info, tmppath); | |
781 | } | |
d3989512 | 782 | free (tmppath); |
dfcffada | 783 | |
d3989512 JJ |
784 | if (info.path) |
785 | { | |
786 | char *d = gld${EMULATION_NAME}_add_sysroot (info.path); | |
787 | free (info.path); | |
788 | ld_so_conf = d; | |
04925e1e | 789 | } |
b34976b6 | 790 | initialized = TRUE; |
04925e1e | 791 | } |
49e56c49 | 792 | |
04925e1e | 793 | if (ld_so_conf == NULL) |
b34976b6 | 794 | return FALSE; |
252b5132 | 795 | |
e56f61be L |
796 | |
797 | needed.by = NULL; | |
798 | needed.name = name; | |
799 | return gld${EMULATION_NAME}_search_needed (ld_so_conf, &needed, force); | |
252b5132 RH |
800 | } |
801 | ||
04925e1e | 802 | EOF |
9c8ebd6a DJ |
803 | # Linux |
804 | ;; | |
04925e1e AM |
805 | esac |
806 | fi | |
807 | cat >>e${EMULATION_NAME}.c <<EOF | |
808 | ||
252b5132 RH |
809 | /* See if an input file matches a DT_NEEDED entry by name. */ |
810 | ||
811 | static void | |
0c7a8e5a | 812 | gld${EMULATION_NAME}_check_needed (lang_input_statement_type *s) |
252b5132 | 813 | { |
e13629bc AM |
814 | const char *soname; |
815 | ||
816 | /* Stop looking if we've found a loaded lib. */ | |
817 | if (global_found != NULL | |
818 | && (bfd_elf_get_dyn_lib_class (global_found->the_bfd) | |
819 | & DYN_AS_NEEDED) == 0) | |
252b5132 RH |
820 | return; |
821 | ||
e13629bc AM |
822 | if (s->filename == NULL || s->the_bfd == NULL) |
823 | return; | |
824 | ||
825 | /* Don't look for a second non-loaded as-needed lib. */ | |
826 | if (global_found != NULL | |
827 | && (bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0) | |
7cedef86 AM |
828 | return; |
829 | ||
e13629bc | 830 | if (strcmp (s->filename, global_needed->name) == 0) |
252b5132 | 831 | { |
e13629bc AM |
832 | global_found = s; |
833 | return; | |
834 | } | |
577a0623 | 835 | |
e13629bc AM |
836 | if (s->search_dirs_flag) |
837 | { | |
838 | const char *f = strrchr (s->filename, '/'); | |
839 | if (f != NULL | |
840 | && strcmp (f + 1, global_needed->name) == 0) | |
577a0623 | 841 | { |
e13629bc | 842 | global_found = s; |
577a0623 AM |
843 | return; |
844 | } | |
252b5132 RH |
845 | } |
846 | ||
e13629bc AM |
847 | soname = bfd_elf_get_dt_soname (s->the_bfd); |
848 | if (soname != NULL | |
849 | && strcmp (soname, global_needed->name) == 0) | |
252b5132 | 850 | { |
e13629bc AM |
851 | global_found = s; |
852 | return; | |
252b5132 | 853 | } |
252b5132 RH |
854 | } |
855 | ||
41392f03 AM |
856 | EOF |
857 | ||
858 | if test x"$LDEMUL_AFTER_OPEN" != xgld"$EMULATION_NAME"_after_open; then | |
859 | cat >>e${EMULATION_NAME}.c <<EOF | |
04925e1e AM |
860 | |
861 | /* This is called after all the input files have been opened. */ | |
252b5132 RH |
862 | |
863 | static void | |
0c7a8e5a | 864 | gld${EMULATION_NAME}_after_open (void) |
252b5132 | 865 | { |
04925e1e | 866 | struct bfd_link_needed_list *needed, *l; |
252b5132 | 867 | |
04925e1e | 868 | /* We only need to worry about this when doing a final link. */ |
1049f94e | 869 | if (link_info.relocatable || !link_info.executable) |
252b5132 RH |
870 | return; |
871 | ||
04925e1e AM |
872 | /* Get the list of files which appear in DT_NEEDED entries in |
873 | dynamic objects included in the link (often there will be none). | |
874 | For each such file, we want to track down the corresponding | |
875 | library, and include the symbol table in the link. This is what | |
876 | the runtime dynamic linker will do. Tracking the files down here | |
877 | permits one dynamic object to include another without requiring | |
878 | special action by the person doing the link. Note that the | |
879 | needed list can actually grow while we are stepping through this | |
880 | loop. */ | |
881 | needed = bfd_elf_get_needed_list (output_bfd, &link_info); | |
882 | for (l = needed; l != NULL; l = l->next) | |
252b5132 | 883 | { |
04925e1e | 884 | struct bfd_link_needed_list *ll; |
e56f61be | 885 | struct dt_needed n, nn; |
04925e1e | 886 | int force; |
252b5132 | 887 | |
7e9f0867 AM |
888 | /* If the lib that needs this one was --as-needed and wasn't |
889 | found to be needed, then this lib isn't needed either. */ | |
890 | if (l->by != NULL | |
891 | && (bfd_elf_get_dyn_lib_class (l->by) & DYN_AS_NEEDED) != 0) | |
892 | continue; | |
893 | ||
04925e1e AM |
894 | /* If we've already seen this file, skip it. */ |
895 | for (ll = needed; ll != l; ll = ll->next) | |
7e9f0867 AM |
896 | if ((ll->by == NULL |
897 | || (bfd_elf_get_dyn_lib_class (ll->by) & DYN_AS_NEEDED) == 0) | |
898 | && strcmp (ll->name, l->name) == 0) | |
04925e1e AM |
899 | break; |
900 | if (ll != l) | |
901 | continue; | |
252b5132 | 902 | |
04925e1e AM |
903 | /* See if this file was included in the link explicitly. */ |
904 | global_needed = l; | |
e13629bc | 905 | global_found = NULL; |
04925e1e | 906 | lang_for_each_input_file (gld${EMULATION_NAME}_check_needed); |
e13629bc AM |
907 | if (global_found != NULL |
908 | && (bfd_elf_get_dyn_lib_class (global_found->the_bfd) | |
909 | & DYN_AS_NEEDED) == 0) | |
04925e1e | 910 | continue; |
252b5132 | 911 | |
e56f61be L |
912 | n.by = l->by; |
913 | n.name = l->name; | |
914 | nn.by = l->by; | |
ec4eb78a L |
915 | if (trace_file_tries) |
916 | info_msg (_("%s needed by %B\n"), l->name, l->by); | |
917 | ||
e13629bc AM |
918 | /* As-needed libs specified on the command line (or linker script) |
919 | take priority over libs found in search dirs. */ | |
920 | if (global_found != NULL) | |
921 | { | |
922 | nn.name = global_found->filename; | |
923 | if (gld${EMULATION_NAME}_try_needed (&nn, TRUE)) | |
924 | continue; | |
925 | } | |
926 | ||
04925e1e AM |
927 | /* We need to find this file and include the symbol table. We |
928 | want to search for the file in the same way that the dynamic | |
929 | linker will search. That means that we want to use | |
930 | rpath_link, rpath, then the environment variable | |
ec4eb78a L |
931 | LD_LIBRARY_PATH (native only), then the DT_RPATH/DT_RUNPATH |
932 | entries (native only), then the linker script LIB_SEARCH_DIRS. | |
933 | We do not search using the -L arguments. | |
252b5132 | 934 | |
04925e1e AM |
935 | We search twice. The first time, we skip objects which may |
936 | introduce version mismatches. The second time, we force | |
937 | their use. See gld${EMULATION_NAME}_vercheck comment. */ | |
938 | for (force = 0; force < 2; force++) | |
939 | { | |
04925e1e AM |
940 | size_t len; |
941 | search_dirs_type *search; | |
6dd8c765 | 942 | EOF |
ff925e69 | 943 | if [ "x${NATIVE}" = xyes ] ; then |
6dd8c765 | 944 | cat >>e${EMULATION_NAME}.c <<EOF |
dcb0bd0e | 945 | const char *lib_path; |
ff925e69 KK |
946 | EOF |
947 | fi | |
948 | if [ "x${USE_LIBPATH}" = xyes ] ; then | |
949 | cat >>e${EMULATION_NAME}.c <<EOF | |
6dd8c765 L |
950 | struct bfd_link_needed_list *rp; |
951 | int found; | |
952 | EOF | |
6dd8c765 L |
953 | fi |
954 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 | 955 | |
04925e1e | 956 | if (gld${EMULATION_NAME}_search_needed (command_line.rpath_link, |
e56f61be | 957 | &n, force)) |
04925e1e | 958 | break; |
dcb0bd0e | 959 | EOF |
9c8ebd6a | 960 | if [ "x${USE_LIBPATH}" = xyes ] ; then |
dcb0bd0e | 961 | cat >>e${EMULATION_NAME}.c <<EOF |
04925e1e | 962 | if (gld${EMULATION_NAME}_search_needed (command_line.rpath, |
e56f61be | 963 | &n, force)) |
04925e1e | 964 | break; |
9c8ebd6a DJ |
965 | EOF |
966 | fi | |
967 | if [ "x${NATIVE}" = xyes ] ; then | |
968 | cat >>e${EMULATION_NAME}.c <<EOF | |
04925e1e AM |
969 | if (command_line.rpath_link == NULL |
970 | && command_line.rpath == NULL) | |
971 | { | |
972 | lib_path = (const char *) getenv ("LD_RUN_PATH"); | |
e56f61be | 973 | if (gld${EMULATION_NAME}_search_needed (lib_path, &n, |
04925e1e AM |
974 | force)) |
975 | break; | |
976 | } | |
04925e1e | 977 | lib_path = (const char *) getenv ("LD_LIBRARY_PATH"); |
e56f61be | 978 | if (gld${EMULATION_NAME}_search_needed (lib_path, &n, force)) |
04925e1e | 979 | break; |
9c8ebd6a DJ |
980 | EOF |
981 | fi | |
982 | if [ "x${USE_LIBPATH}" = xyes ] ; then | |
983 | cat >>e${EMULATION_NAME}.c <<EOF | |
ec4eb78a | 984 | found = 0; |
6dd8c765 L |
985 | rp = bfd_elf_get_runpath_list (output_bfd, &link_info); |
986 | for (; !found && rp != NULL; rp = rp->next) | |
ec4eb78a | 987 | { |
9c8ebd6a | 988 | char *tmpname = gld${EMULATION_NAME}_add_sysroot (rp->name); |
ec4eb78a | 989 | found = (rp->by == l->by |
9c8ebd6a | 990 | && gld${EMULATION_NAME}_search_needed (tmpname, |
e56f61be | 991 | &n, |
ec4eb78a | 992 | force)); |
9c8ebd6a | 993 | free (tmpname); |
ec4eb78a L |
994 | } |
995 | if (found) | |
996 | break; | |
997 | ||
04925e1e | 998 | EOF |
04925e1e | 999 | fi |
c1446dba L |
1000 | if [ "x${USE_LIBPATH}" = xyes ] ; then |
1001 | case ${target} in | |
ebe1fac1 NC |
1002 | *-*-freebsd* | *-*-dragonfly*) |
1003 | cat >>e${EMULATION_NAME}.c <<EOF | |
1004 | if (gld${EMULATION_NAME}_check_ld_elf_hints (l->name, force)) | |
1005 | break; | |
1006 | EOF | |
1007 | # FreeBSD | |
1008 | ;; | |
1009 | ||
c1446dba L |
1010 | *-*-linux-* | *-*-k*bsd*-*) |
1011 | # Linux | |
1012 | cat >>e${EMULATION_NAME}.c <<EOF | |
1013 | if (gld${EMULATION_NAME}_check_ld_so_conf (l->name, force)) | |
1014 | break; | |
1015 | ||
1016 | EOF | |
1017 | ;; | |
1018 | esac | |
1019 | fi | |
04925e1e AM |
1020 | cat >>e${EMULATION_NAME}.c <<EOF |
1021 | len = strlen (l->name); | |
1022 | for (search = search_head; search != NULL; search = search->next) | |
1023 | { | |
1024 | char *filename; | |
252b5132 | 1025 | |
04925e1e AM |
1026 | if (search->cmdline) |
1027 | continue; | |
1028 | filename = (char *) xmalloc (strlen (search->name) + len + 2); | |
1029 | sprintf (filename, "%s/%s", search->name, l->name); | |
e56f61be L |
1030 | nn.name = filename; |
1031 | if (gld${EMULATION_NAME}_try_needed (&nn, force)) | |
04925e1e AM |
1032 | break; |
1033 | free (filename); | |
1034 | } | |
1035 | if (search != NULL) | |
1036 | break; | |
1037 | EOF | |
04925e1e AM |
1038 | cat >>e${EMULATION_NAME}.c <<EOF |
1039 | } | |
252b5132 | 1040 | |
04925e1e AM |
1041 | if (force < 2) |
1042 | continue; | |
252b5132 | 1043 | |
e374f1d9 | 1044 | einfo ("%P: warning: %s, needed by %B, not found (try using -rpath or -rpath-link)\n", |
04925e1e AM |
1045 | l->name, l->by); |
1046 | } | |
1047 | } | |
252b5132 | 1048 | |
41392f03 AM |
1049 | EOF |
1050 | fi | |
1051 | ||
1052 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 | 1053 | |
04925e1e | 1054 | /* Look through an expression for an assignment statement. */ |
252b5132 | 1055 | |
04925e1e | 1056 | static void |
0c7a8e5a | 1057 | gld${EMULATION_NAME}_find_exp_assignment (etree_type *exp) |
04925e1e | 1058 | { |
4ea42fb7 | 1059 | bfd_boolean provide = FALSE; |
04925e1e AM |
1060 | |
1061 | switch (exp->type.node_class) | |
252b5132 | 1062 | { |
04925e1e | 1063 | case etree_provide: |
4ea42fb7 AM |
1064 | provide = TRUE; |
1065 | /* Fall thru */ | |
1066 | case etree_assign: | |
04925e1e AM |
1067 | /* We call record_link_assignment even if the symbol is defined. |
1068 | This is because if it is defined by a dynamic object, we | |
1069 | actually want to use the value defined by the linker script, | |
1070 | not the value from the dynamic object (because we are setting | |
1071 | symbols like etext). If the symbol is defined by a regular | |
1072 | object, then, as it happens, calling record_link_assignment | |
1073 | will do no harm. */ | |
04925e1e | 1074 | if (strcmp (exp->assign.dst, ".") != 0) |
252b5132 | 1075 | { |
fe21a8fc L |
1076 | if (!bfd_elf_record_link_assignment (output_bfd, &link_info, |
1077 | exp->assign.dst, provide, | |
1078 | exp->assign.hidden)) | |
04925e1e AM |
1079 | einfo ("%P%F: failed to record assignment to %s: %E\n", |
1080 | exp->assign.dst); | |
252b5132 | 1081 | } |
04925e1e AM |
1082 | gld${EMULATION_NAME}_find_exp_assignment (exp->assign.src); |
1083 | break; | |
252b5132 | 1084 | |
04925e1e AM |
1085 | case etree_binary: |
1086 | gld${EMULATION_NAME}_find_exp_assignment (exp->binary.lhs); | |
1087 | gld${EMULATION_NAME}_find_exp_assignment (exp->binary.rhs); | |
1088 | break; | |
252b5132 | 1089 | |
04925e1e AM |
1090 | case etree_trinary: |
1091 | gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.cond); | |
1092 | gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.lhs); | |
1093 | gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.rhs); | |
1094 | break; | |
252b5132 | 1095 | |
04925e1e AM |
1096 | case etree_unary: |
1097 | gld${EMULATION_NAME}_find_exp_assignment (exp->unary.child); | |
1098 | break; | |
252b5132 | 1099 | |
04925e1e AM |
1100 | default: |
1101 | break; | |
252b5132 RH |
1102 | } |
1103 | } | |
1104 | ||
04925e1e AM |
1105 | |
1106 | /* This is called by the before_allocation routine via | |
1107 | lang_for_each_statement. It locates any assignment statements, and | |
1108 | tells the ELF backend about them, in case they are assignments to | |
1109 | symbols which are referred to by dynamic objects. */ | |
1110 | ||
1111 | static void | |
0c7a8e5a | 1112 | gld${EMULATION_NAME}_find_statement_assignment (lang_statement_union_type *s) |
04925e1e AM |
1113 | { |
1114 | if (s->header.type == lang_assignment_statement_enum) | |
1115 | gld${EMULATION_NAME}_find_exp_assignment (s->assignment_statement.exp); | |
1116 | } | |
1117 | ||
41392f03 AM |
1118 | EOF |
1119 | ||
1120 | if test x"$LDEMUL_BEFORE_ALLOCATION" != xgld"$EMULATION_NAME"_before_allocation; then | |
57e6abd2 AO |
1121 | if test x"${ELF_INTERPRETER_NAME+set}" = xset; then |
1122 | ELF_INTERPRETER_SET_DEFAULT=" | |
1123 | if (sinterp != NULL) | |
1124 | { | |
5718918d AM |
1125 | sinterp->contents = (unsigned char *) ${ELF_INTERPRETER_NAME}; |
1126 | sinterp->size = strlen ((char *) sinterp->contents) + 1; | |
57e6abd2 AO |
1127 | } |
1128 | ||
1129 | " | |
1130 | else | |
1131 | ELF_INTERPRETER_SET_DEFAULT= | |
1132 | fi | |
41392f03 | 1133 | cat >>e${EMULATION_NAME}.c <<EOF |
04925e1e | 1134 | |
252b5132 RH |
1135 | /* This is called after the sections have been attached to output |
1136 | sections, but before any sizes or addresses have been set. */ | |
1137 | ||
1138 | static void | |
0c7a8e5a | 1139 | gld${EMULATION_NAME}_before_allocation (void) |
252b5132 RH |
1140 | { |
1141 | const char *rpath; | |
1142 | asection *sinterp; | |
1143 | ||
fd574c46 | 1144 | if (link_info.hash->type == bfd_link_elf_hash_table) |
e1918d23 AM |
1145 | _bfd_elf_tls_setup (output_bfd, &link_info); |
1146 | ||
252b5132 RH |
1147 | /* If we are going to make any variable assignments, we need to let |
1148 | the ELF backend know about them in case the variables are | |
1149 | referred to by dynamic objects. */ | |
1150 | lang_for_each_statement (gld${EMULATION_NAME}_find_statement_assignment); | |
1151 | ||
1152 | /* Let the ELF backend work out the sizes of any sections required | |
1153 | by dynamic linking. */ | |
1154 | rpath = command_line.rpath; | |
1155 | if (rpath == NULL) | |
1156 | rpath = (const char *) getenv ("LD_RUN_PATH"); | |
5a580b3a | 1157 | if (! (bfd_elf_size_dynamic_sections |
0c7a8e5a | 1158 | (output_bfd, command_line.soname, rpath, |
605d9b3a | 1159 | command_line.filter_shlib, |
252b5132 RH |
1160 | (const char * const *) command_line.auxiliary_filters, |
1161 | &link_info, &sinterp, lang_elf_version_info))) | |
1162 | einfo ("%P%F: failed to set dynamic section sizes: %E\n"); | |
8423293d | 1163 | |
57e6abd2 | 1164 | ${ELF_INTERPRETER_SET_DEFAULT} |
252b5132 RH |
1165 | /* Let the user override the dynamic linker we are using. */ |
1166 | if (command_line.interpreter != NULL | |
1167 | && sinterp != NULL) | |
1168 | { | |
1169 | sinterp->contents = (bfd_byte *) command_line.interpreter; | |
eea6121a | 1170 | sinterp->size = strlen (command_line.interpreter) + 1; |
252b5132 RH |
1171 | } |
1172 | ||
1173 | /* Look for any sections named .gnu.warning. As a GNU extensions, | |
1174 | we treat such sections as containing warning messages. We print | |
1175 | out the warning message, and then zero out the section size so | |
1176 | that it does not get copied into the output file. */ | |
1177 | ||
1178 | { | |
1179 | LANG_FOR_EACH_INPUT_STATEMENT (is) | |
1180 | { | |
1181 | asection *s; | |
1182 | bfd_size_type sz; | |
8c675694 | 1183 | bfd_size_type prefix_len; |
252b5132 | 1184 | char *msg; |
b34976b6 | 1185 | bfd_boolean ret; |
8c675694 | 1186 | const char * gnu_warning_prefix = _("warning: "); |
252b5132 RH |
1187 | |
1188 | if (is->just_syms_flag) | |
1189 | continue; | |
1190 | ||
1191 | s = bfd_get_section_by_name (is->the_bfd, ".gnu.warning"); | |
1192 | if (s == NULL) | |
1193 | continue; | |
1194 | ||
eea6121a | 1195 | sz = s->size; |
8c675694 NC |
1196 | prefix_len = strlen (gnu_warning_prefix); |
1197 | msg = xmalloc ((size_t) (prefix_len + sz + 1)); | |
1198 | strcpy (msg, gnu_warning_prefix); | |
1199 | if (! bfd_get_section_contents (is->the_bfd, s, msg + prefix_len, | |
1200 | (file_ptr) 0, sz)) | |
252b5132 RH |
1201 | einfo ("%F%B: Can't read contents of section .gnu.warning: %E\n", |
1202 | is->the_bfd); | |
8c675694 | 1203 | msg[prefix_len + sz] = '\0'; |
252b5132 RH |
1204 | ret = link_info.callbacks->warning (&link_info, msg, |
1205 | (const char *) NULL, | |
1206 | is->the_bfd, (asection *) NULL, | |
1207 | (bfd_vma) 0); | |
1208 | ASSERT (ret); | |
1209 | free (msg); | |
1210 | ||
1211 | /* Clobber the section size, so that we don't waste copying the | |
1212 | warning into the output file. */ | |
eea6121a | 1213 | s->size = 0; |
11d2f718 AM |
1214 | |
1215 | /* Also set SEC_EXCLUDE, so that symbols defined in the warning | |
1216 | section don't get copied to the output. */ | |
1217 | s->flags |= SEC_EXCLUDE; | |
252b5132 RH |
1218 | } |
1219 | } | |
8423293d | 1220 | |
1e035701 | 1221 | before_allocation_default (); |
8423293d AM |
1222 | |
1223 | if (!bfd_elf_size_dynsym_hash_dynstr (output_bfd, &link_info)) | |
1224 | einfo ("%P%F: failed to set dynamic section sizes: %E\n"); | |
252b5132 RH |
1225 | } |
1226 | ||
41392f03 AM |
1227 | EOF |
1228 | fi | |
1229 | ||
1230 | if test x"$LDEMUL_OPEN_DYNAMIC_ARCHIVE" != xgld"$EMULATION_NAME"_open_dynamic_archive; then | |
1231 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 | 1232 | |
04925e1e AM |
1233 | /* Try to open a dynamic archive. This is where we know that ELF |
1234 | dynamic libraries have an extension of .so (or .sl on oddball systems | |
1235 | like hpux). */ | |
1236 | ||
b34976b6 | 1237 | static bfd_boolean |
0c7a8e5a AM |
1238 | gld${EMULATION_NAME}_open_dynamic_archive |
1239 | (const char *arch, search_dirs_type *search, lang_input_statement_type *entry) | |
252b5132 | 1240 | { |
04925e1e AM |
1241 | const char *filename; |
1242 | char *string; | |
252b5132 | 1243 | |
04925e1e | 1244 | if (! entry->is_archive) |
b34976b6 | 1245 | return FALSE; |
252b5132 | 1246 | |
04925e1e | 1247 | filename = entry->filename; |
252b5132 | 1248 | |
04925e1e AM |
1249 | /* This allocates a few bytes too many when EXTRA_SHLIB_EXTENSION |
1250 | is defined, but it does not seem worth the headache to optimize | |
1251 | away those two bytes of space. */ | |
1252 | string = (char *) xmalloc (strlen (search->name) | |
1253 | + strlen (filename) | |
1254 | + strlen (arch) | |
1255 | #ifdef EXTRA_SHLIB_EXTENSION | |
1256 | + strlen (EXTRA_SHLIB_EXTENSION) | |
1257 | #endif | |
1258 | + sizeof "/lib.so"); | |
1259 | ||
1260 | sprintf (string, "%s/lib%s%s.so", search->name, filename, arch); | |
1261 | ||
1262 | #ifdef EXTRA_SHLIB_EXTENSION | |
1263 | /* Try the .so extension first. If that fails build a new filename | |
1264 | using EXTRA_SHLIB_EXTENSION. */ | |
1265 | if (! ldfile_try_open_bfd (string, entry)) | |
1266 | sprintf (string, "%s/lib%s%s%s", search->name, | |
1267 | filename, arch, EXTRA_SHLIB_EXTENSION); | |
1268 | #endif | |
1269 | ||
1270 | if (! ldfile_try_open_bfd (string, entry)) | |
252b5132 | 1271 | { |
04925e1e | 1272 | free (string); |
b34976b6 | 1273 | return FALSE; |
04925e1e | 1274 | } |
252b5132 | 1275 | |
04925e1e | 1276 | entry->filename = string; |
252b5132 | 1277 | |
04925e1e AM |
1278 | /* We have found a dynamic object to include in the link. The ELF |
1279 | backend linker will create a DT_NEEDED entry in the .dynamic | |
1280 | section naming this file. If this file includes a DT_SONAME | |
1281 | entry, it will be used. Otherwise, the ELF linker will just use | |
1282 | the name of the file. For an archive found by searching, like | |
1283 | this one, the DT_NEEDED entry should consist of just the name of | |
1284 | the file, without the path information used to find it. Note | |
1285 | that we only need to do this if we have a dynamic object; an | |
1286 | archive will never be referenced by a DT_NEEDED entry. | |
252b5132 | 1287 | |
04925e1e AM |
1288 | FIXME: This approach--using bfd_elf_set_dt_needed_name--is not |
1289 | very pretty. I haven't been able to think of anything that is | |
1290 | pretty, though. */ | |
1291 | if (bfd_check_format (entry->the_bfd, bfd_object) | |
1292 | && (entry->the_bfd->flags & DYNAMIC) != 0) | |
1293 | { | |
04925e1e | 1294 | ASSERT (entry->is_archive && entry->search_dirs_flag); |
252b5132 | 1295 | |
04925e1e | 1296 | /* Rather than duplicating the logic above. Just use the |
1c9acd94 | 1297 | filename we recorded earlier. */ |
04925e1e | 1298 | |
fed2999d | 1299 | filename = lbasename (entry->filename); |
1c9acd94 | 1300 | bfd_elf_set_dt_needed_name (entry->the_bfd, filename); |
04925e1e AM |
1301 | } |
1302 | ||
b34976b6 | 1303 | return TRUE; |
04925e1e AM |
1304 | } |
1305 | ||
41392f03 AM |
1306 | EOF |
1307 | fi | |
cde43e70 AM |
1308 | |
1309 | if test x"$LDEMUL_PLACE_ORPHAN" != xgld"$EMULATION_NAME"_place_orphan; then | |
41392f03 AM |
1310 | cat >>e${EMULATION_NAME}.c <<EOF |
1311 | ||
afd7a018 | 1312 | /* A variant of lang_output_section_find used by place_orphan. */ |
04925e1e | 1313 | |
04925e1e | 1314 | static lang_output_section_statement_type * |
2a36a117 | 1315 | output_rel_find (asection *sec, int isdyn) |
04925e1e | 1316 | { |
04925e1e | 1317 | lang_output_section_statement_type *lookup; |
ba493122 | 1318 | lang_output_section_statement_type *last = NULL; |
2a36a117 | 1319 | lang_output_section_statement_type *last_alloc = NULL; |
ba493122 AM |
1320 | lang_output_section_statement_type *last_rel = NULL; |
1321 | lang_output_section_statement_type *last_rel_alloc = NULL; | |
24cdb50a | 1322 | int rela = sec->name[4] == 'a'; |
04925e1e | 1323 | |
afd7a018 AM |
1324 | for (lookup = &lang_output_section_statement.head->output_section_statement; |
1325 | lookup != NULL; | |
1326 | lookup = lookup->next) | |
04925e1e | 1327 | { |
0841712e JJ |
1328 | if (lookup->constraint != -1 |
1329 | && strncmp (".rel", lookup->name, 4) == 0) | |
04925e1e | 1330 | { |
24cdb50a | 1331 | int lookrela = lookup->name[4] == 'a'; |
ba493122 | 1332 | |
2a36a117 AM |
1333 | /* .rel.dyn must come before all other reloc sections, to suit |
1334 | GNU ld.so. */ | |
1335 | if (isdyn) | |
1336 | break; | |
1337 | ||
1338 | /* Don't place after .rel.plt as doing so results in wrong | |
1339 | dynamic tags. */ | |
1340 | if (strcmp (".plt", lookup->name + 4 + lookrela) == 0) | |
ba493122 | 1341 | break; |
2a36a117 AM |
1342 | |
1343 | if (rela == lookrela || last_rel == NULL) | |
24cdb50a | 1344 | last_rel = lookup; |
2a36a117 AM |
1345 | if ((rela == lookrela || last_rel_alloc == NULL) |
1346 | && lookup->bfd_section != NULL | |
ba493122 AM |
1347 | && (lookup->bfd_section->flags & SEC_ALLOC) != 0) |
1348 | last_rel_alloc = lookup; | |
04925e1e | 1349 | } |
2a36a117 AM |
1350 | |
1351 | last = lookup; | |
1352 | if (lookup->bfd_section != NULL | |
1353 | && (lookup->bfd_section->flags & SEC_ALLOC) != 0) | |
1354 | last_alloc = lookup; | |
252b5132 | 1355 | } |
ba493122 AM |
1356 | |
1357 | if (last_rel_alloc) | |
1358 | return last_rel_alloc; | |
1359 | ||
1360 | if (last_rel) | |
1361 | return last_rel; | |
1362 | ||
2a36a117 AM |
1363 | if (last_alloc) |
1364 | return last_alloc; | |
1365 | ||
ba493122 | 1366 | return last; |
252b5132 RH |
1367 | } |
1368 | ||
1369 | /* Place an orphan section. We use this to put random SHF_ALLOC | |
1370 | sections in the right segment. */ | |
1371 | ||
b34976b6 | 1372 | static bfd_boolean |
7b986e99 | 1373 | gld${EMULATION_NAME}_place_orphan (asection *s) |
252b5132 | 1374 | { |
afd7a018 AM |
1375 | static struct orphan_save hold[] = |
1376 | { | |
1377 | { ".text", | |
1378 | SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE, | |
1379 | 0, 0, 0, 0 }, | |
1380 | { ".rodata", | |
1381 | SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA, | |
1382 | 0, 0, 0, 0 }, | |
1383 | { ".data", | |
1384 | SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA, | |
1385 | 0, 0, 0, 0 }, | |
1386 | { ".bss", | |
1387 | SEC_ALLOC, | |
1388 | 0, 0, 0, 0 }, | |
1389 | { 0, | |
1390 | SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA, | |
1391 | 0, 0, 0, 0 }, | |
1392 | { ".interp", | |
1393 | SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA, | |
1394 | 0, 0, 0, 0 }, | |
1395 | { ".sdata", | |
1396 | SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_SMALL_DATA, | |
1397 | 0, 0, 0, 0 } | |
1398 | }; | |
1399 | enum orphan_save_index | |
1400 | { | |
1401 | orphan_text = 0, | |
1402 | orphan_rodata, | |
1403 | orphan_data, | |
1404 | orphan_bss, | |
1405 | orphan_rel, | |
1406 | orphan_interp, | |
1407 | orphan_sdata | |
1408 | }; | |
1409 | static int orphan_init_done = 0; | |
6a345e87 | 1410 | struct orphan_save *place; |
a854a4a7 | 1411 | const char *secname; |
afd7a018 | 1412 | lang_output_section_statement_type *after; |
252b5132 | 1413 | lang_output_section_statement_type *os; |
24cdb50a | 1414 | int isdyn = 0; |
ecca9871 L |
1415 | int iself = s->owner->xvec->flavour == bfd_target_elf_flavour; |
1416 | unsigned int sh_type = iself ? elf_section_type (s) : SHT_NULL; | |
252b5132 | 1417 | |
aea4bd9d | 1418 | secname = bfd_get_section_name (s->owner, s); |
9f61903d | 1419 | |
1049f94e | 1420 | if (! link_info.relocatable |
24cdb50a | 1421 | && link_info.combreloc |
ecca9871 | 1422 | && (s->flags & SEC_ALLOC)) |
24cdb50a | 1423 | { |
ecca9871 L |
1424 | if (iself) |
1425 | switch (sh_type) | |
1426 | { | |
1427 | case SHT_RELA: | |
1428 | secname = ".rela.dyn"; | |
1429 | isdyn = 1; | |
1430 | break; | |
1431 | case SHT_REL: | |
1432 | secname = ".rel.dyn"; | |
1433 | isdyn = 1; | |
1434 | break; | |
1435 | default: | |
1436 | break; | |
1437 | } | |
1438 | else if (strncmp (secname, ".rel", 4) == 0) | |
1439 | { | |
1440 | secname = secname[4] == 'a' ? ".rela.dyn" : ".rel.dyn"; | |
1441 | isdyn = 1; | |
1442 | } | |
24cdb50a | 1443 | } |
aea4bd9d | 1444 | |
d0d6a25b | 1445 | if (isdyn || (!config.unique_orphan_sections && !unique_section_p (s))) |
252b5132 | 1446 | { |
6d02a667 | 1447 | /* Look through the script to see where to place this section. */ |
a854a4a7 AM |
1448 | os = lang_output_section_find (secname); |
1449 | ||
1450 | if (os != NULL | |
0f33d40b | 1451 | && (os->bfd_section == NULL |
afd7a018 | 1452 | || os->bfd_section->flags == 0 |
390fbbf1 AM |
1453 | || (_bfd_elf_match_sections_by_type (output_bfd, |
1454 | os->bfd_section, | |
1455 | s->owner, s) | |
ecca9871 L |
1456 | && ((s->flags ^ os->bfd_section->flags) |
1457 | & (SEC_LOAD | SEC_ALLOC)) == 0))) | |
a854a4a7 | 1458 | { |
0f33d40b | 1459 | /* We already have an output section statement with this |
afd7a018 AM |
1460 | name, and its bfd section, if any, has compatible flags. |
1461 | If the section already exists but does not have any flags | |
1462 | set, then it has been created by the linker, probably as a | |
1463 | result of a --section-start command line switch. */ | |
7b986e99 | 1464 | lang_add_section (&os->children, s, os); |
b34976b6 | 1465 | return TRUE; |
a854a4a7 | 1466 | } |
252b5132 RH |
1467 | } |
1468 | ||
afd7a018 AM |
1469 | if (!orphan_init_done) |
1470 | { | |
1471 | struct orphan_save *ho; | |
1472 | for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho) | |
1473 | if (ho->name != NULL) | |
1474 | { | |
1475 | ho->os = lang_output_section_find (ho->name); | |
1476 | if (ho->os != NULL && ho->os->flags == 0) | |
1477 | ho->os->flags = ho->flags; | |
1478 | } | |
1479 | orphan_init_done = 1; | |
1480 | } | |
252b5132 RH |
1481 | |
1482 | /* If this is a final link, then always put .gnu.warning.SYMBOL | |
1483 | sections into the .text section to get them out of the way. */ | |
36af4a4e | 1484 | if (link_info.executable |
1049f94e | 1485 | && ! link_info.relocatable |
252b5132 | 1486 | && strncmp (secname, ".gnu.warning.", sizeof ".gnu.warning." - 1) == 0 |
afd7a018 | 1487 | && hold[orphan_text].os != NULL) |
252b5132 | 1488 | { |
afd7a018 | 1489 | lang_add_section (&hold[orphan_text].os->children, s, |
7b986e99 | 1490 | hold[orphan_text].os); |
b34976b6 | 1491 | return TRUE; |
252b5132 RH |
1492 | } |
1493 | ||
1494 | /* Decide which segment the section should go in based on the | |
1495 | section name and section flags. We put loadable .note sections | |
1496 | right after the .interp section, so that the PT_NOTE segment is | |
1497 | stored right after the program headers where the OS can read it | |
1498 | in the first page. */ | |
aea4bd9d | 1499 | |
71bfc0ae AM |
1500 | place = NULL; |
1501 | if ((s->flags & SEC_ALLOC) == 0) | |
1502 | ; | |
252b5132 | 1503 | else if ((s->flags & SEC_LOAD) != 0 |
ecca9871 L |
1504 | && ((iself && sh_type == SHT_NOTE) |
1505 | || (!iself && strncmp (secname, ".note", 5) == 0))) | |
afd7a018 AM |
1506 | place = &hold[orphan_interp]; |
1507 | else if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0) | |
1508 | place = &hold[orphan_bss]; | |
1509 | else if ((s->flags & SEC_SMALL_DATA) != 0) | |
1510 | place = &hold[orphan_sdata]; | |
1511 | else if ((s->flags & SEC_READONLY) == 0) | |
1512 | place = &hold[orphan_data]; | |
ecca9871 L |
1513 | else if (((iself && (sh_type == SHT_RELA || sh_type == SHT_REL)) |
1514 | || (!iself && strncmp (secname, ".rel", 4) == 0)) | |
afd7a018 AM |
1515 | && (s->flags & SEC_LOAD) != 0) |
1516 | place = &hold[orphan_rel]; | |
1517 | else if ((s->flags & SEC_CODE) == 0) | |
1518 | place = &hold[orphan_rodata]; | |
1519 | else | |
1520 | place = &hold[orphan_text]; | |
71bfc0ae | 1521 | |
afd7a018 | 1522 | after = NULL; |
5ba47421 | 1523 | if (place != NULL) |
252b5132 | 1524 | { |
afd7a018 | 1525 | if (place->os == NULL) |
5ba47421 | 1526 | { |
afd7a018 AM |
1527 | if (place->name != NULL) |
1528 | place->os = lang_output_section_find (place->name); | |
1529 | else | |
1530 | place->os = output_rel_find (s, isdyn); | |
5ba47421 | 1531 | } |
afd7a018 AM |
1532 | after = place->os; |
1533 | if (after == NULL) | |
390fbbf1 AM |
1534 | after = lang_output_section_find_by_flags |
1535 | (s, &place->os, _bfd_elf_match_sections_by_type); | |
afd7a018 AM |
1536 | if (after == NULL) |
1537 | /* *ABS* is always the first output section statement. */ | |
1538 | after = &lang_output_section_statement.head->output_section_statement; | |
252b5132 RH |
1539 | } |
1540 | ||
afd7a018 AM |
1541 | /* Choose a unique name for the section. This will be needed if the |
1542 | same section name appears in the input file with different | |
1543 | loadable or allocatable characteristics. */ | |
1544 | if (bfd_get_section_by_name (output_bfd, secname) != NULL) | |
252b5132 | 1545 | { |
afd7a018 AM |
1546 | static int count = 1; |
1547 | secname = bfd_get_unique_section_name (output_bfd, secname, &count); | |
1548 | if (secname == NULL) | |
1549 | einfo ("%F%P: place_orphan failed: %E\n"); | |
71bfc0ae | 1550 | } |
5ba47421 | 1551 | |
7b986e99 | 1552 | lang_insert_orphan (s, secname, after, place, NULL, NULL); |
252b5132 | 1553 | |
b34976b6 | 1554 | return TRUE; |
252b5132 | 1555 | } |
c56feb2b AM |
1556 | EOF |
1557 | fi | |
1558 | ||
1559 | if test x"$LDEMUL_FINISH" != xgld"$EMULATION_NAME"_finish; then | |
1560 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 | 1561 | |
deb04cdb AM |
1562 | static void |
1563 | gld${EMULATION_NAME}_finish (void) | |
1564 | { | |
8ded5a0f | 1565 | bfd_boolean need_layout = bfd_elf_discard_info (output_bfd, &link_info); |
81e1b023 | 1566 | |
8ded5a0f | 1567 | gld${EMULATION_NAME}_map_segments (need_layout); |
1e035701 | 1568 | finish_default (); |
73d074b4 | 1569 | } |
41392f03 AM |
1570 | EOF |
1571 | fi | |
1572 | ||
1573 | if test x"$LDEMUL_GET_SCRIPT" != xgld"$EMULATION_NAME"_get_script; then | |
1574 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 RH |
1575 | |
1576 | static char * | |
0c7a8e5a | 1577 | gld${EMULATION_NAME}_get_script (int *isfile) |
252b5132 RH |
1578 | EOF |
1579 | ||
1580 | if test -n "$COMPILE_IN" | |
1581 | then | |
1582 | # Scripts compiled in. | |
1583 | ||
1584 | # sed commands to quote an ld script as a C string. | |
597e2591 | 1585 | sc="-f stringify.sed" |
252b5132 RH |
1586 | |
1587 | cat >>e${EMULATION_NAME}.c <<EOF | |
60bcf0fa | 1588 | { |
252b5132 RH |
1589 | *isfile = 0; |
1590 | ||
1049f94e | 1591 | if (link_info.relocatable && config.build_constructors) |
597e2591 | 1592 | return |
252b5132 | 1593 | EOF |
afd7a018 AM |
1594 | sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c |
1595 | echo ' ; else if (link_info.relocatable) return' >> e${EMULATION_NAME}.c | |
1596 | sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c | |
1597 | echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c | |
1598 | sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c | |
61585df2 | 1599 | if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then : ; else |
afd7a018 AM |
1600 | echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c |
1601 | sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c | |
db6751f2 | 1602 | fi |
36af4a4e JJ |
1603 | if test -n "$GENERATE_PIE_SCRIPT" ; then |
1604 | if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then | |
8c37241b JJ |
1605 | echo ' ; else if (link_info.pie && link_info.combreloc' >> e${EMULATION_NAME}.c |
1606 | echo ' && link_info.relro' >> e${EMULATION_NAME}.c | |
1607 | echo ' && (link_info.flags & DT_BIND_NOW)) return' >> e${EMULATION_NAME}.c | |
afd7a018 | 1608 | sed $sc ldscripts/${EMULATION_NAME}.xdw >> e${EMULATION_NAME}.c |
36af4a4e | 1609 | echo ' ; else if (link_info.pie && link_info.combreloc) return' >> e${EMULATION_NAME}.c |
afd7a018 | 1610 | sed $sc ldscripts/${EMULATION_NAME}.xdc >> e${EMULATION_NAME}.c |
36af4a4e | 1611 | fi |
afd7a018 AM |
1612 | echo ' ; else if (link_info.pie) return' >> e${EMULATION_NAME}.c |
1613 | sed $sc ldscripts/${EMULATION_NAME}.xd >> e${EMULATION_NAME}.c | |
36af4a4e | 1614 | fi |
252b5132 | 1615 | if test -n "$GENERATE_SHLIB_SCRIPT" ; then |
82434356 | 1616 | if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then |
8c37241b JJ |
1617 | echo ' ; else if (link_info.shared && link_info.combreloc' >> e${EMULATION_NAME}.c |
1618 | echo ' && link_info.relro' >> e${EMULATION_NAME}.c | |
1619 | echo ' && (link_info.flags & DT_BIND_NOW)) return' >> e${EMULATION_NAME}.c | |
afd7a018 | 1620 | sed $sc ldscripts/${EMULATION_NAME}.xsw >> e${EMULATION_NAME}.c |
db6751f2 | 1621 | echo ' ; else if (link_info.shared && link_info.combreloc) return' >> e${EMULATION_NAME}.c |
afd7a018 | 1622 | sed $sc ldscripts/${EMULATION_NAME}.xsc >> e${EMULATION_NAME}.c |
82434356 | 1623 | fi |
afd7a018 AM |
1624 | echo ' ; else if (link_info.shared) return' >> e${EMULATION_NAME}.c |
1625 | sed $sc ldscripts/${EMULATION_NAME}.xs >> e${EMULATION_NAME}.c | |
252b5132 | 1626 | fi |
82434356 | 1627 | if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then |
8c37241b JJ |
1628 | echo ' ; else if (link_info.combreloc && link_info.relro' >> e${EMULATION_NAME}.c |
1629 | echo ' && (link_info.flags & DT_BIND_NOW)) return' >> e${EMULATION_NAME}.c | |
afd7a018 AM |
1630 | sed $sc ldscripts/${EMULATION_NAME}.xw >> e${EMULATION_NAME}.c |
1631 | echo ' ; else if (link_info.combreloc) return' >> e${EMULATION_NAME}.c | |
1632 | sed $sc ldscripts/${EMULATION_NAME}.xc >> e${EMULATION_NAME}.c | |
82434356 | 1633 | fi |
afd7a018 AM |
1634 | echo ' ; else return' >> e${EMULATION_NAME}.c |
1635 | sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c | |
1636 | echo '; }' >> e${EMULATION_NAME}.c | |
252b5132 RH |
1637 | |
1638 | else | |
1639 | # Scripts read from the filesystem. | |
1640 | ||
1641 | cat >>e${EMULATION_NAME}.c <<EOF | |
60bcf0fa | 1642 | { |
252b5132 RH |
1643 | *isfile = 1; |
1644 | ||
1049f94e | 1645 | if (link_info.relocatable && config.build_constructors) |
252b5132 | 1646 | return "ldscripts/${EMULATION_NAME}.xu"; |
1049f94e | 1647 | else if (link_info.relocatable) |
252b5132 RH |
1648 | return "ldscripts/${EMULATION_NAME}.xr"; |
1649 | else if (!config.text_read_only) | |
1650 | return "ldscripts/${EMULATION_NAME}.xbn"; | |
a060b769 AM |
1651 | EOF |
1652 | if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then : | |
1653 | else | |
1654 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 RH |
1655 | else if (!config.magic_demand_paged) |
1656 | return "ldscripts/${EMULATION_NAME}.xn"; | |
a060b769 AM |
1657 | EOF |
1658 | fi | |
36af4a4e JJ |
1659 | if test -n "$GENERATE_PIE_SCRIPT" ; then |
1660 | if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then | |
1661 | cat >>e${EMULATION_NAME}.c <<EOF | |
8c37241b JJ |
1662 | else if (link_info.pie && link_info.combreloc |
1663 | && link_info.relro && (link_info.flags & DT_BIND_NOW)) | |
1664 | return "ldscripts/${EMULATION_NAME}.xdw"; | |
36af4a4e JJ |
1665 | else if (link_info.pie && link_info.combreloc) |
1666 | return "ldscripts/${EMULATION_NAME}.xdc"; | |
1667 | EOF | |
1668 | fi | |
1669 | cat >>e${EMULATION_NAME}.c <<EOF | |
1670 | else if (link_info.pie) | |
1671 | return "ldscripts/${EMULATION_NAME}.xd"; | |
1672 | EOF | |
1673 | fi | |
a060b769 AM |
1674 | if test -n "$GENERATE_SHLIB_SCRIPT" ; then |
1675 | if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then | |
1676 | cat >>e${EMULATION_NAME}.c <<EOF | |
8c37241b JJ |
1677 | else if (link_info.shared && link_info.combreloc |
1678 | && link_info.relro && (link_info.flags & DT_BIND_NOW)) | |
1679 | return "ldscripts/${EMULATION_NAME}.xsw"; | |
a060b769 AM |
1680 | else if (link_info.shared && link_info.combreloc) |
1681 | return "ldscripts/${EMULATION_NAME}.xsc"; | |
1682 | EOF | |
1683 | fi | |
1684 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 RH |
1685 | else if (link_info.shared) |
1686 | return "ldscripts/${EMULATION_NAME}.xs"; | |
a060b769 AM |
1687 | EOF |
1688 | fi | |
1689 | if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then | |
1690 | cat >>e${EMULATION_NAME}.c <<EOF | |
8c37241b JJ |
1691 | else if (link_info.combreloc && link_info.relro |
1692 | && (link_info.flags & DT_BIND_NOW)) | |
1693 | return "ldscripts/${EMULATION_NAME}.xw"; | |
a060b769 AM |
1694 | else if (link_info.combreloc) |
1695 | return "ldscripts/${EMULATION_NAME}.xc"; | |
1696 | EOF | |
1697 | fi | |
1698 | cat >>e${EMULATION_NAME}.c <<EOF | |
252b5132 RH |
1699 | else |
1700 | return "ldscripts/${EMULATION_NAME}.x"; | |
1701 | } | |
252b5132 | 1702 | |
3b108066 | 1703 | EOF |
41392f03 AM |
1704 | fi |
1705 | fi | |
3b108066 | 1706 | |
41392f03 | 1707 | if test -n "$PARSE_AND_LIST_ARGS_CASES" -o x"$GENERATE_SHLIB_SCRIPT" = xyes; then |
3b108066 | 1708 | |
e0ee487b L |
1709 | if test -n "$PARSE_AND_LIST_PROLOGUE" ; then |
1710 | cat >>e${EMULATION_NAME}.c <<EOF | |
1711 | $PARSE_AND_LIST_PROLOGUE | |
1712 | EOF | |
1713 | fi | |
1714 | ||
e0ee487b L |
1715 | cat >>e${EMULATION_NAME}.c <<EOF |
1716 | ||
6c1439be L |
1717 | #define OPTION_DISABLE_NEW_DTAGS (400) |
1718 | #define OPTION_ENABLE_NEW_DTAGS (OPTION_DISABLE_NEW_DTAGS + 1) | |
a1ab1d2a | 1719 | #define OPTION_GROUP (OPTION_ENABLE_NEW_DTAGS + 1) |
65765700 | 1720 | #define OPTION_EH_FRAME_HDR (OPTION_GROUP + 1) |
b58f81ae | 1721 | #define OPTION_EXCLUDE_LIBS (OPTION_EH_FRAME_HDR + 1) |
fdc90cb4 | 1722 | #define OPTION_HASH_STYLE (OPTION_EXCLUDE_LIBS + 1) |
e13629bc | 1723 | |
3bcf5557 | 1724 | static void |
0c7a8e5a AM |
1725 | gld${EMULATION_NAME}_add_options |
1726 | (int ns, char **shortopts, int nl, struct option **longopts, | |
1727 | int nrl ATTRIBUTE_UNUSED, struct option **really_longopts ATTRIBUTE_UNUSED) | |
e0ee487b | 1728 | { |
3bcf5557 AM |
1729 | static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:"; |
1730 | static const struct option xtra_long[] = { | |
e0ee487b | 1731 | EOF |
e0ee487b L |
1732 | |
1733 | if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then | |
1734 | cat >>e${EMULATION_NAME}.c <<EOF | |
3bcf5557 AM |
1735 | {"disable-new-dtags", no_argument, NULL, OPTION_DISABLE_NEW_DTAGS}, |
1736 | {"enable-new-dtags", no_argument, NULL, OPTION_ENABLE_NEW_DTAGS}, | |
1737 | {"eh-frame-hdr", no_argument, NULL, OPTION_EH_FRAME_HDR}, | |
b58f81ae | 1738 | {"exclude-libs", required_argument, NULL, OPTION_EXCLUDE_LIBS}, |
fdc90cb4 | 1739 | {"hash-style", required_argument, NULL, OPTION_HASH_STYLE}, |
3bcf5557 | 1740 | {"Bgroup", no_argument, NULL, OPTION_GROUP}, |
e0ee487b L |
1741 | EOF |
1742 | fi | |
1743 | ||
1744 | if test -n "$PARSE_AND_LIST_LONGOPTS" ; then | |
1745 | cat >>e${EMULATION_NAME}.c <<EOF | |
3bcf5557 | 1746 | $PARSE_AND_LIST_LONGOPTS |
e0ee487b L |
1747 | EOF |
1748 | fi | |
1749 | ||
e0ee487b | 1750 | cat >>e${EMULATION_NAME}.c <<EOF |
3bcf5557 AM |
1751 | {NULL, no_argument, NULL, 0} |
1752 | }; | |
1753 | ||
1754 | *shortopts = (char *) xrealloc (*shortopts, ns + sizeof (xtra_short)); | |
1755 | memcpy (*shortopts + ns, &xtra_short, sizeof (xtra_short)); | |
1756 | *longopts = (struct option *) | |
1757 | xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long)); | |
1758 | memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long)); | |
1759 | } | |
04925e1e | 1760 | |
3bcf5557 | 1761 | static bfd_boolean |
0c7a8e5a | 1762 | gld${EMULATION_NAME}_handle_option (int optc) |
e0ee487b | 1763 | { |
e0ee487b L |
1764 | switch (optc) |
1765 | { | |
1766 | default: | |
3bcf5557 | 1767 | return FALSE; |
6c1439be | 1768 | |
e0ee487b | 1769 | EOF |
e0ee487b L |
1770 | |
1771 | if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then | |
1772 | cat >>e${EMULATION_NAME}.c <<EOF | |
6c1439be | 1773 | case OPTION_DISABLE_NEW_DTAGS: |
b34976b6 | 1774 | link_info.new_dtags = FALSE; |
6c1439be L |
1775 | break; |
1776 | ||
1777 | case OPTION_ENABLE_NEW_DTAGS: | |
b34976b6 | 1778 | link_info.new_dtags = TRUE; |
6c1439be L |
1779 | break; |
1780 | ||
65765700 | 1781 | case OPTION_EH_FRAME_HDR: |
b34976b6 | 1782 | link_info.eh_frame_hdr = TRUE; |
65765700 JJ |
1783 | break; |
1784 | ||
a1ab1d2a UD |
1785 | case OPTION_GROUP: |
1786 | link_info.flags_1 |= (bfd_vma) DF_1_GROUP; | |
1787 | /* Groups must be self-contained. */ | |
560e09e9 NC |
1788 | link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR; |
1789 | link_info.unresolved_syms_in_shared_libs = RM_GENERATE_ERROR; | |
a1ab1d2a UD |
1790 | break; |
1791 | ||
b58f81ae DJ |
1792 | case OPTION_EXCLUDE_LIBS: |
1793 | add_excluded_libs (optarg); | |
1794 | break; | |
1795 | ||
fdc90cb4 JJ |
1796 | case OPTION_HASH_STYLE: |
1797 | link_info.emit_hash = FALSE; | |
1798 | link_info.emit_gnu_hash = FALSE; | |
1799 | if (strcmp (optarg, "sysv") == 0) | |
1800 | link_info.emit_hash = TRUE; | |
1801 | else if (strcmp (optarg, "gnu") == 0) | |
1802 | link_info.emit_gnu_hash = TRUE; | |
1803 | else if (strcmp (optarg, "both") == 0) | |
1804 | { | |
1805 | link_info.emit_hash = TRUE; | |
1806 | link_info.emit_gnu_hash = TRUE; | |
1807 | } | |
1808 | else | |
1809 | einfo (_("%P%F: invalid hash style \`%s'\n"), optarg); | |
1810 | break; | |
1811 | ||
e0ee487b L |
1812 | case 'z': |
1813 | if (strcmp (optarg, "initfirst") == 0) | |
1814 | link_info.flags_1 |= (bfd_vma) DF_1_INITFIRST; | |
1815 | else if (strcmp (optarg, "interpose") == 0) | |
1816 | link_info.flags_1 |= (bfd_vma) DF_1_INTERPOSE; | |
1817 | else if (strcmp (optarg, "loadfltr") == 0) | |
1818 | link_info.flags_1 |= (bfd_vma) DF_1_LOADFLTR; | |
1819 | else if (strcmp (optarg, "nodefaultlib") == 0) | |
1820 | link_info.flags_1 |= (bfd_vma) DF_1_NODEFLIB; | |
1821 | else if (strcmp (optarg, "nodelete") == 0) | |
1822 | link_info.flags_1 |= (bfd_vma) DF_1_NODELETE; | |
1823 | else if (strcmp (optarg, "nodlopen") == 0) | |
1824 | link_info.flags_1 |= (bfd_vma) DF_1_NOOPEN; | |
1825 | else if (strcmp (optarg, "nodump") == 0) | |
1826 | link_info.flags_1 |= (bfd_vma) DF_1_NODUMP; | |
1827 | else if (strcmp (optarg, "now") == 0) | |
1828 | { | |
1829 | link_info.flags |= (bfd_vma) DF_BIND_NOW; | |
1830 | link_info.flags_1 |= (bfd_vma) DF_1_NOW; | |
1831 | } | |
5fa222e4 AM |
1832 | else if (strcmp (optarg, "lazy") == 0) |
1833 | { | |
1834 | link_info.flags &= ~(bfd_vma) DF_BIND_NOW; | |
1835 | link_info.flags_1 &= ~(bfd_vma) DF_1_NOW; | |
1836 | } | |
e0ee487b L |
1837 | else if (strcmp (optarg, "origin") == 0) |
1838 | { | |
1839 | link_info.flags |= (bfd_vma) DF_ORIGIN; | |
1840 | link_info.flags_1 |= (bfd_vma) DF_1_ORIGIN; | |
1841 | } | |
a1ab1d2a | 1842 | else if (strcmp (optarg, "defs") == 0) |
560e09e9 | 1843 | link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR; |
aa713662 | 1844 | else if (strcmp (optarg, "muldefs") == 0) |
b34976b6 | 1845 | link_info.allow_multiple_definition = TRUE; |
db6751f2 | 1846 | else if (strcmp (optarg, "combreloc") == 0) |
b34976b6 | 1847 | link_info.combreloc = TRUE; |
db6751f2 | 1848 | else if (strcmp (optarg, "nocombreloc") == 0) |
b34976b6 | 1849 | link_info.combreloc = FALSE; |
8bd621d8 | 1850 | else if (strcmp (optarg, "nocopyreloc") == 0) |
0c7a8e5a | 1851 | link_info.nocopyreloc = TRUE; |
9ee5e499 JJ |
1852 | else if (strcmp (optarg, "execstack") == 0) |
1853 | { | |
1854 | link_info.execstack = TRUE; | |
1855 | link_info.noexecstack = FALSE; | |
1856 | } | |
1857 | else if (strcmp (optarg, "noexecstack") == 0) | |
1858 | { | |
1859 | link_info.noexecstack = TRUE; | |
1860 | link_info.execstack = FALSE; | |
1861 | } | |
8c37241b JJ |
1862 | else if (strcmp (optarg, "relro") == 0) |
1863 | link_info.relro = TRUE; | |
1864 | else if (strcmp (optarg, "norelro") == 0) | |
1865 | link_info.relro = FALSE; | |
24718e3b L |
1866 | else if (strncmp (optarg, "max-page-size=", 14) == 0) |
1867 | { | |
1868 | char *end; | |
1869 | config.maxpagesize = strtoul (optarg + 14, &end, 0); | |
1870 | if (*end) | |
1871 | einfo (_("%P%F: invalid maxium page size \`%s'\n"), | |
1872 | optarg + 14); | |
1873 | } | |
1874 | else if (strncmp (optarg, "common-page-size=", 17) == 0) | |
1875 | { | |
1876 | char *end; | |
1877 | config.commonpagesize = strtoul (optarg + 17, &end, 0); | |
1878 | if (*end) | |
1879 | einfo (_("%P%F: invalid common page size \`%s'\n"), | |
1880 | optarg + 17); | |
1881 | } | |
e0ee487b | 1882 | /* What about the other Solaris -z options? FIXME. */ |
6c1439be | 1883 | break; |
e0ee487b L |
1884 | EOF |
1885 | fi | |
1886 | ||
1887 | if test -n "$PARSE_AND_LIST_ARGS_CASES" ; then | |
1888 | cat >>e${EMULATION_NAME}.c <<EOF | |
1889 | $PARSE_AND_LIST_ARGS_CASES | |
1890 | EOF | |
1891 | fi | |
1892 | ||
e0ee487b L |
1893 | cat >>e${EMULATION_NAME}.c <<EOF |
1894 | } | |
1895 | ||
3bcf5557 | 1896 | return TRUE; |
e0ee487b L |
1897 | } |
1898 | ||
41392f03 | 1899 | EOF |
41392f03 | 1900 | |
4b209b22 | 1901 | if test x"$LDEMUL_LIST_OPTIONS" != xgld"$EMULATION_NAME"_list_options; then |
41392f03 AM |
1902 | cat >>e${EMULATION_NAME}.c <<EOF |
1903 | ||
e0ee487b | 1904 | static void |
0c7a8e5a | 1905 | gld${EMULATION_NAME}_list_options (FILE * file) |
e0ee487b L |
1906 | { |
1907 | EOF | |
e0ee487b L |
1908 | |
1909 | if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then | |
1910 | cat >>e${EMULATION_NAME}.c <<EOF | |
a1ab1d2a | 1911 | fprintf (file, _(" -Bgroup\t\tSelects group name lookup rules for DSO\n")); |
6c1439be L |
1912 | fprintf (file, _(" --disable-new-dtags\tDisable new dynamic tags\n")); |
1913 | fprintf (file, _(" --enable-new-dtags\tEnable new dynamic tags\n")); | |
65765700 | 1914 | fprintf (file, _(" --eh-frame-hdr\tCreate .eh_frame_hdr section\n")); |
fdc90cb4 | 1915 | fprintf (file, _(" --hash-style=STYLE\tSet hash style to sysv, gnu or both\n")); |
ec38dd05 | 1916 | fprintf (file, _(" -z combreloc\t\tMerge dynamic relocs into one section and sort\n")); |
560e09e9 | 1917 | fprintf (file, _(" -z defs\t\tReport unresolved symbols in object files.\n")); |
9ee5e499 | 1918 | fprintf (file, _(" -z execstack\t\tMark executable as requiring executable stack\n")); |
f813923c HPN |
1919 | fprintf (file, _(" -z initfirst\t\tMark DSO to be initialized first at runtime\n")); |
1920 | fprintf (file, _(" -z interpose\t\tMark object to interpose all DSOs but executable\n")); | |
5fa222e4 | 1921 | fprintf (file, _(" -z lazy\t\tMark object lazy runtime binding (default)\n")); |
e0ee487b | 1922 | fprintf (file, _(" -z loadfltr\t\tMark object requiring immediate process\n")); |
aa713662 | 1923 | fprintf (file, _(" -z muldefs\t\tAllow multiple definitions\n")); |
146e7110 AM |
1924 | fprintf (file, _(" -z nocombreloc\tDon't merge dynamic relocs into one section\n")); |
1925 | fprintf (file, _(" -z nocopyreloc\tDon't create copy relocs\n")); | |
e0ee487b L |
1926 | fprintf (file, _(" -z nodefaultlib\tMark object not to use default search paths\n")); |
1927 | fprintf (file, _(" -z nodelete\t\tMark DSO non-deletable at runtime\n")); | |
f813923c HPN |
1928 | fprintf (file, _(" -z nodlopen\t\tMark DSO not available to dlopen\n")); |
1929 | fprintf (file, _(" -z nodump\t\tMark DSO not available to dldump\n")); | |
10b4329d | 1930 | fprintf (file, _(" -z noexecstack\tMark executable as not requiring executable stack\n")); |
8c37241b | 1931 | fprintf (file, _(" -z norelro\t\tDon't create RELRO program header\n")); |
e0ee487b | 1932 | fprintf (file, _(" -z now\t\tMark object non-lazy runtime binding\n")); |
73e87d70 | 1933 | fprintf (file, _(" -z origin\t\tMark object requiring immediate \$ORIGIN processing\n\t\t\t at runtime\n")); |
8c37241b | 1934 | fprintf (file, _(" -z relro\t\tCreate RELRO program header\n")); |
24718e3b L |
1935 | fprintf (file, _(" -z max-page-size=SIZE\tSet maximum page size to SIZE\n")); |
1936 | fprintf (file, _(" -z common-page-size=SIZE\n\t\t\tSet common page size to SIZE\n")); | |
19e3be22 | 1937 | fprintf (file, _(" -z KEYWORD\t\tIgnored for Solaris compatibility\n")); |
e0ee487b L |
1938 | EOF |
1939 | fi | |
1940 | ||
1941 | if test -n "$PARSE_AND_LIST_OPTIONS" ; then | |
1942 | cat >>e${EMULATION_NAME}.c <<EOF | |
1943 | $PARSE_AND_LIST_OPTIONS | |
1944 | EOF | |
1945 | fi | |
1946 | ||
e0ee487b L |
1947 | cat >>e${EMULATION_NAME}.c <<EOF |
1948 | } | |
1949 | EOF | |
e0ee487b L |
1950 | |
1951 | if test -n "$PARSE_AND_LIST_EPILOGUE" ; then | |
1952 | cat >>e${EMULATION_NAME}.c <<EOF | |
1953 | $PARSE_AND_LIST_EPILOGUE | |
1954 | EOF | |
1955 | fi | |
41392f03 AM |
1956 | fi |
1957 | else | |
41392f03 | 1958 | cat >>e${EMULATION_NAME}.c <<EOF |
3bcf5557 AM |
1959 | #define gld${EMULATION_NAME}_add_options NULL |
1960 | #define gld${EMULATION_NAME}_handle_option NULL | |
41392f03 | 1961 | EOF |
4b209b22 | 1962 | if test x"$LDEMUL_LIST_OPTIONS" != xgld"$EMULATION_NAME"_list_options; then |
41392f03 | 1963 | cat >>e${EMULATION_NAME}.c <<EOF |
4b209b22 | 1964 | #define gld${EMULATION_NAME}_list_options NULL |
41392f03 AM |
1965 | EOF |
1966 | fi | |
1967 | fi | |
e0ee487b | 1968 | |
252b5132 RH |
1969 | cat >>e${EMULATION_NAME}.c <<EOF |
1970 | ||
60bcf0fa | 1971 | struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = |
252b5132 | 1972 | { |
41392f03 AM |
1973 | ${LDEMUL_BEFORE_PARSE-gld${EMULATION_NAME}_before_parse}, |
1974 | ${LDEMUL_SYSLIB-syslib_default}, | |
1975 | ${LDEMUL_HLL-hll_default}, | |
1976 | ${LDEMUL_AFTER_PARSE-after_parse_default}, | |
1977 | ${LDEMUL_AFTER_OPEN-gld${EMULATION_NAME}_after_open}, | |
1978 | ${LDEMUL_AFTER_ALLOCATION-after_allocation_default}, | |
1979 | ${LDEMUL_SET_OUTPUT_ARCH-set_output_arch_default}, | |
1980 | ${LDEMUL_CHOOSE_TARGET-ldemul_default_target}, | |
1981 | ${LDEMUL_BEFORE_ALLOCATION-gld${EMULATION_NAME}_before_allocation}, | |
1982 | ${LDEMUL_GET_SCRIPT-gld${EMULATION_NAME}_get_script}, | |
252b5132 RH |
1983 | "${EMULATION_NAME}", |
1984 | "${OUTPUT_FORMAT}", | |
c56feb2b | 1985 | ${LDEMUL_FINISH-gld${EMULATION_NAME}_finish}, |
41392f03 AM |
1986 | ${LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS-NULL}, |
1987 | ${LDEMUL_OPEN_DYNAMIC_ARCHIVE-gld${EMULATION_NAME}_open_dynamic_archive}, | |
1988 | ${LDEMUL_PLACE_ORPHAN-gld${EMULATION_NAME}_place_orphan}, | |
1989 | ${LDEMUL_SET_SYMBOLS-NULL}, | |
3bcf5557 AM |
1990 | ${LDEMUL_PARSE_ARGS-NULL}, |
1991 | gld${EMULATION_NAME}_add_options, | |
1992 | gld${EMULATION_NAME}_handle_option, | |
41392f03 | 1993 | ${LDEMUL_UNRECOGNIZED_FILE-NULL}, |
4b209b22 | 1994 | ${LDEMUL_LIST_OPTIONS-gld${EMULATION_NAME}_list_options}, |
4a43e768 | 1995 | ${LDEMUL_RECOGNIZED_FILE-gld${EMULATION_NAME}_load_symbols}, |
41392f03 | 1996 | ${LDEMUL_FIND_POTENTIAL_LIBRARIES-NULL}, |
fac1652d | 1997 | ${LDEMUL_NEW_VERS_PATTERN-NULL} |
252b5132 RH |
1998 | }; |
1999 | EOF |