xtensa: fix PR ld/25861
[deliverable/binutils-gdb.git] / ld / ldfile.c
CommitLineData
a9998805 1/* Linker file opening and searching.
b3adc24a 2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
252b5132 3
f96b4a7b 4 This file is part of the GNU Binutils.
252b5132 5
f96b4a7b 6 This program is free software; you can redistribute it and/or modify
3fe38064 7 it under the terms of the GNU General Public License as published by
f96b4a7b
NC
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
252b5132 10
f96b4a7b 11 This program is distributed in the hope that it will be useful,
3fe38064
NC
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
252b5132 15
3fe38064 16 You should have received a copy of the GNU General Public License
f96b4a7b
NC
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
252b5132 20
252b5132 21#include "sysdep.h"
3db64b00 22#include "bfd.h"
252b5132 23#include "bfdlink.h"
1ff6de03 24#include "ctf-api.h"
3882b010 25#include "safe-ctype.h"
252b5132
RH
26#include "ld.h"
27#include "ldmisc.h"
28#include "ldexp.h"
29#include "ldlang.h"
30#include "ldfile.h"
31#include "ldmain.h"
df2a7313 32#include <ldgram.h>
252b5132
RH
33#include "ldlex.h"
34#include "ldemul.h"
d1b2b2dc 35#include "libiberty.h"
3fe38064 36#include "filenames.h"
5d3236ee
DK
37#ifdef ENABLE_PLUGINS
38#include "plugin-api.h"
39#include "plugin.h"
40#endif /* ENABLE_PLUGINS */
252b5132 41
0aa7f586
AM
42bfd_boolean ldfile_assumed_script = FALSE;
43const char *ldfile_output_machine_name = "";
252b5132
RH
44unsigned long ldfile_output_machine;
45enum bfd_architecture ldfile_output_architecture;
0aa7f586 46search_dirs_type *search_head;
252b5132 47
252b5132 48#ifdef VMS
0aa7f586 49static char *slash = "";
252b5132 50#else
0aa7f586
AM
51#if defined (_WIN32) && !defined (__CYGWIN32__)
52static char *slash = "\\";
252b5132 53#else
0aa7f586 54static char *slash = "/";
252b5132
RH
55#endif
56#endif
252b5132 57
3fe38064
NC
58typedef struct search_arch
59{
4de2d33d 60 char *name;
252b5132
RH
61 struct search_arch *next;
62} search_arch_type;
63
3fe38064 64static search_dirs_type **search_tail_ptr = &search_head;
252b5132
RH
65static search_arch_type *search_arch_head;
66static search_arch_type **search_arch_tail_ptr = &search_arch_head;
4de2d33d 67
3fe38064
NC
68/* Test whether a pathname, after canonicalization, is the same or a
69 sub-directory of the sysroot directory. */
70
71static bfd_boolean
f4a23d42 72is_sysrooted_pathname (const char *name)
3fe38064 73{
66be1055 74 char *realname;
3fe38064
NC
75 int len;
76 bfd_boolean result;
77
66be1055 78 if (ld_canon_sysroot == NULL)
3fe38064 79 return FALSE;
5e2f1575 80
66be1055 81 realname = lrealpath (name);
3fe38064 82 len = strlen (realname);
66be1055 83 result = FALSE;
f4a23d42
AM
84 if (len > ld_canon_sysroot_len
85 && IS_DIR_SEPARATOR (realname[ld_canon_sysroot_len]))
66be1055 86 {
66be1055 87 realname[ld_canon_sysroot_len] = '\0';
f4a23d42 88 result = FILENAME_CMP (ld_canon_sysroot, realname) == 0;
66be1055 89 }
3fe38064 90
66be1055 91 free (realname);
3fe38064
NC
92 return result;
93}
252b5132 94
5ed6aba4
NC
95/* Adds NAME to the library search path.
96 Makes a copy of NAME using xmalloc(). */
97
252b5132 98void
1579bae1 99ldfile_add_library_path (const char *name, bfd_boolean cmdline)
252b5132 100{
d3ce72d0 101 search_dirs_type *new_dirs;
252b5132 102
361b220e
CD
103 if (!cmdline && config.only_cmd_line_lib_dirs)
104 return;
105
d3ce72d0
NC
106 new_dirs = (search_dirs_type *) xmalloc (sizeof (search_dirs_type));
107 new_dirs->next = NULL;
108 new_dirs->cmdline = cmdline;
109 *search_tail_ptr = new_dirs;
110 search_tail_ptr = &new_dirs->next;
9c8ebd6a
DJ
111
112 /* If a directory is marked as honoring sysroot, prepend the sysroot path
113 now. */
5ed6aba4 114 if (name[0] == '=')
f4a23d42 115 new_dirs->name = concat (ld_sysroot, name + 1, (const char *) NULL);
3aa2d05a
NC
116 else if (CONST_STRNEQ (name, "$SYSROOT"))
117 new_dirs->name = concat (ld_sysroot, name + strlen ("$SYSROOT"), (const char *) NULL);
e3f2db7f 118 else
f4a23d42 119 new_dirs->name = xstrdup (name);
252b5132
RH
120}
121
122/* Try to open a BFD for a lang_input_statement. */
123
b34976b6 124bfd_boolean
1579bae1
AM
125ldfile_try_open_bfd (const char *attempt,
126 lang_input_statement_type *entry)
252b5132
RH
127{
128 entry->the_bfd = bfd_openr (attempt, entry->target);
129
cd6f1cf3 130 if (verbose)
252b5132
RH
131 {
132 if (entry->the_bfd == NULL)
133 info_msg (_("attempt to open %s failed\n"), attempt);
134 else
135 info_msg (_("attempt to open %s succeeded\n"), attempt);
136 }
137
b90d1146 138 if (entry->the_bfd == NULL)
252b5132
RH
139 {
140 if (bfd_get_error () == bfd_error_invalid_target)
141 einfo (_("%F%P: invalid BFD target `%s'\n"), entry->target);
b34976b6 142 return FALSE;
252b5132 143 }
b90d1146 144
4a114e3e
L
145 /* Linker needs to decompress sections. */
146 entry->the_bfd->flags |= BFD_DECOMPRESS;
147
f6fe1ccd
L
148 /* This is a linker input BFD. */
149 entry->the_bfd->is_linker_input = 1;
150
ce875075
AM
151#ifdef ENABLE_PLUGINS
152 if (entry->flags.lto_output)
153 entry->the_bfd->lto_output = 1;
154#endif
155
b90d1146
ILT
156 /* If we are searching for this file, see if the architecture is
157 compatible with the output file. If it isn't, keep searching.
158 If we can't open the file as an object file, stop the search
6c0c5b1e 159 here. If we are statically linking, ensure that we don't link
5d3236ee
DK
160 a dynamic object.
161
162 In the code below, it's OK to exit early if the check fails,
163 closing the checked BFD and returning FALSE, but if the BFD
164 checks out compatible, do not exit early returning TRUE, or
165 the plugins will not get a chance to claim the file. */
b90d1146 166
66be1055 167 if (entry->flags.search_dirs || !entry->flags.dynamic)
b90d1146
ILT
168 {
169 bfd *check;
170
171 if (bfd_check_format (entry->the_bfd, bfd_archive))
172 check = bfd_openr_next_archived_file (entry->the_bfd, NULL);
173 else
174 check = entry->the_bfd;
175
a9998805 176 if (check != NULL)
b90d1146 177 {
0aa7f586 178 if (!bfd_check_format (check, bfd_object))
599917b8
JJ
179 {
180 if (check == entry->the_bfd
66be1055 181 && entry->flags.search_dirs
599917b8 182 && bfd_get_error () == bfd_error_file_not_recognized
0aa7f586 183 && !ldemul_unrecognized_file (entry))
599917b8
JJ
184 {
185 int token, skip = 0;
186 char *arg, *arg1, *arg2, *arg3;
187 extern FILE *yyin;
188
189 /* Try to interpret the file as a linker script. */
82d7a6f4 190 ldfile_open_command_file (attempt);
b34976b6
AM
191
192 ldfile_assumed_script = TRUE;
599917b8
JJ
193 parser_input = input_selected;
194 ldlex_both ();
195 token = INPUT_SCRIPT;
196 while (token != 0)
197 {
198 switch (token)
199 {
200 case OUTPUT_FORMAT:
201 if ((token = yylex ()) != '(')
202 continue;
203 if ((token = yylex ()) != NAME)
204 continue;
205 arg1 = yylval.name;
206 arg2 = NULL;
207 arg3 = NULL;
208 token = yylex ();
209 if (token == ',')
210 {
211 if ((token = yylex ()) != NAME)
212 {
213 free (arg1);
214 continue;
215 }
216 arg2 = yylval.name;
217 if ((token = yylex ()) != ','
218 || (token = yylex ()) != NAME)
219 {
220 free (arg1);
221 free (arg2);
222 continue;
223 }
224 arg3 = yylval.name;
225 token = yylex ();
226 }
227 if (token == ')')
228 {
229 switch (command_line.endian)
230 {
231 default:
232 case ENDIAN_UNSET:
233 arg = arg1; break;
234 case ENDIAN_BIG:
235 arg = arg2 ? arg2 : arg1; break;
236 case ENDIAN_LITTLE:
237 arg = arg3 ? arg3 : arg1; break;
238 }
239 if (strcmp (arg, lang_get_output_target ()) != 0)
240 skip = 1;
241 }
242 free (arg1);
243 if (arg2) free (arg2);
244 if (arg3) free (arg3);
245 break;
246 case NAME:
247 case LNAME:
248 case VERS_IDENTIFIER:
249 case VERS_TAG:
250 free (yylval.name);
251 break;
252 case INT:
253 if (yylval.bigint.str)
254 free (yylval.bigint.str);
255 break;
5e2f1575 256 }
599917b8
JJ
257 token = yylex ();
258 }
4f39e302 259 ldlex_popstate ();
b34976b6 260 ldfile_assumed_script = FALSE;
599917b8
JJ
261 fclose (yyin);
262 yyin = NULL;
263 if (skip)
264 {
fe7929ce
AM
265 if (command_line.warn_search_mismatch)
266 einfo (_("%P: skipping incompatible %s "
267 "when searching for %s\n"),
268 attempt, entry->local_sym_name);
599917b8
JJ
269 bfd_close (entry->the_bfd);
270 entry->the_bfd = NULL;
b34976b6 271 return FALSE;
599917b8
JJ
272 }
273 }
5d3236ee 274 goto success;
599917b8 275 }
f1f0d9ab 276
66be1055 277 if (!entry->flags.dynamic && (entry->the_bfd->flags & DYNAMIC) != 0)
6c0c5b1e
AM
278 {
279 einfo (_("%F%P: attempted static link of dynamic object `%s'\n"),
280 attempt);
281 bfd_close (entry->the_bfd);
282 entry->the_bfd = NULL;
283 return FALSE;
284 }
285
66be1055 286 if (entry->flags.search_dirs
f13a99db 287 && !bfd_arch_get_compatible (check, link_info.output_bfd,
6c0c5b1e 288 command_line.accept_unknown_input_arch)
312b768e 289 /* XCOFF archives can have 32 and 64 bit objects. */
0aa7f586
AM
290 && !(bfd_get_flavour (check) == bfd_target_xcoff_flavour
291 && (bfd_get_flavour (link_info.output_bfd)
292 == bfd_target_xcoff_flavour)
293 && bfd_check_format (entry->the_bfd, bfd_archive)))
a9998805 294 {
fe7929ce
AM
295 if (command_line.warn_search_mismatch)
296 einfo (_("%P: skipping incompatible %s "
297 "when searching for %s\n"),
298 attempt, entry->local_sym_name);
a9998805
ILT
299 bfd_close (entry->the_bfd);
300 entry->the_bfd = NULL;
b34976b6 301 return FALSE;
a9998805 302 }
b90d1146
ILT
303 }
304 }
dc1e8a47 305 success:
5d3236ee
DK
306#ifdef ENABLE_PLUGINS
307 /* If plugins are active, they get first chance to claim
308 any successfully-opened input file. We skip archives
309 here; the plugin wants us to offer it the individual
310 members when we enumerate them, not the whole file. We
311 also ignore corefiles, because that's just weird. It is
312 a needed side-effect of calling bfd_check_format with
313 bfd_object that it sets the bfd's arch and mach, which
314 will be needed when and if we want to bfd_create a new
315 one using this one as a template. */
1d5b29cf
L
316 if (link_info.lto_plugin_active
317 && !no_more_claiming
318 && bfd_check_format (entry->the_bfd, bfd_object))
35a1e5f3 319 plugin_maybe_claim (entry);
5d3236ee 320#endif /* ENABLE_PLUGINS */
b90d1146 321
5d3236ee
DK
322 /* It opened OK, the format checked out, and the plugins have had
323 their chance to claim it, so this is success. */
b34976b6 324 return TRUE;
252b5132
RH
325}
326
327/* Search for and open the file specified by ENTRY. If it is an
328 archive, use ARCH, LIB and SUFFIX to modify the file name. */
329
b34976b6 330bfd_boolean
1579bae1
AM
331ldfile_open_file_search (const char *arch,
332 lang_input_statement_type *entry,
333 const char *lib,
334 const char *suffix)
252b5132
RH
335{
336 search_dirs_type *search;
337
338 /* If this is not an archive, try to open it in the current
339 directory first. */
0aa7f586 340 if (!entry->flags.maybe_archive)
252b5132 341 {
66be1055 342 if (entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename))
e3f2db7f
AO
343 {
344 char *name = concat (ld_sysroot, entry->filename,
345 (const char *) NULL);
346 if (ldfile_try_open_bfd (name, entry))
347 {
348 entry->filename = name;
349 return TRUE;
350 }
351 free (name);
352 }
353 else if (ldfile_try_open_bfd (entry->filename, entry))
f4a23d42 354 return TRUE;
3fe38064
NC
355
356 if (IS_ABSOLUTE_PATH (entry->filename))
357 return FALSE;
252b5132
RH
358 }
359
1579bae1 360 for (search = search_head; search != NULL; search = search->next)
252b5132
RH
361 {
362 char *string;
363
0e1862bb 364 if (entry->flags.dynamic && !bfd_link_relocatable (&link_info))
252b5132
RH
365 {
366 if (ldemul_open_dynamic_archive (arch, search, entry))
f4a23d42 367 return TRUE;
252b5132
RH
368 }
369
d4ae5fb0 370 if (entry->flags.maybe_archive && !entry->flags.full_name_provided)
a26cc967
AM
371 string = concat (search->name, slash, lib, entry->filename,
372 arch, suffix, (const char *) NULL);
252b5132 373 else
a26cc967
AM
374 string = concat (search->name, slash, entry->filename,
375 (const char *) 0);
252b5132
RH
376
377 if (ldfile_try_open_bfd (string, entry))
378 {
b90d1146 379 entry->filename = string;
b34976b6 380 return TRUE;
252b5132
RH
381 }
382
383 free (string);
384 }
385
b34976b6 386 return FALSE;
252b5132
RH
387}
388
c4b78195
NC
389/* Open the input file specified by ENTRY.
390 PR 4437: Do not stop on the first missing file, but
391 continue processing other input files in case there
392 are more errors to report. */
252b5132
RH
393
394void
1579bae1 395ldfile_open_file (lang_input_statement_type *entry)
252b5132
RH
396{
397 if (entry->the_bfd != NULL)
398 return;
399
0aa7f586 400 if (!entry->flags.search_dirs)
252b5132
RH
401 {
402 if (ldfile_try_open_bfd (entry->filename, entry))
403 return;
c4b78195 404
42627821 405 if (filename_cmp (entry->filename, entry->local_sym_name) != 0)
c4b78195 406 einfo (_("%P: cannot find %s (%s): %E\n"),
252b5132
RH
407 entry->filename, entry->local_sym_name);
408 else
c4b78195
NC
409 einfo (_("%P: cannot find %s: %E\n"), entry->local_sym_name);
410
66be1055
AM
411 entry->flags.missing_file = TRUE;
412 input_flags.missing_file = TRUE;
252b5132
RH
413 }
414 else
415 {
416 search_arch_type *arch;
b34976b6 417 bfd_boolean found = FALSE;
252b5132 418
16171946
FS
419 /* If extra_search_path is set, entry->filename is a relative path.
420 Search the directory of the current linker script before searching
421 other paths. */
422 if (entry->extra_search_path)
423 {
424 char *path = concat (entry->extra_search_path, slash, entry->filename,
425 (const char *)0);
426 if (ldfile_try_open_bfd (path, entry))
427 {
428 entry->filename = path;
429 entry->flags.search_dirs = FALSE;
430 return;
431 }
432
433 free (path);
434 }
435
436 /* Try to open <filename><suffix> or lib<filename><suffix>.a. */
1579bae1 437 for (arch = search_arch_head; arch != NULL; arch = arch->next)
252b5132 438 {
78f85fd7
L
439 found = ldfile_open_file_search (arch->name, entry, "lib", ".a");
440 if (found)
441 break;
252b5132 442#ifdef VMS
78f85fd7
L
443 found = ldfile_open_file_search (arch->name, entry, ":lib", ".a");
444 if (found)
445 break;
252b5132 446#endif
78f85fd7
L
447 found = ldemul_find_potential_libraries (arch->name, entry);
448 if (found)
449 break;
252b5132 450 }
4de2d33d 451
78f85fd7
L
452 /* If we have found the file, we don't need to search directories
453 again. */
454 if (found)
66be1055 455 entry->flags.search_dirs = FALSE;
c4b78195
NC
456 else
457 {
66be1055 458 if (entry->flags.sysrooted
3fe38064
NC
459 && ld_sysroot
460 && IS_ABSOLUTE_PATH (entry->local_sym_name))
c4b78195
NC
461 einfo (_("%P: cannot find %s inside %s\n"),
462 entry->local_sym_name, ld_sysroot);
463 else
464 einfo (_("%P: cannot find %s\n"), entry->local_sym_name);
77bf7b53
NC
465
466 /* PR 25747: Be kind to users who forgot to add the
467 "lib" prefix to their library when it was created. */
468 for (arch = search_arch_head; arch != NULL; arch = arch->next)
469 {
470 if (ldfile_open_file_search (arch->name, entry, "", ".a"))
471 {
472 const char * base = lbasename (entry->filename);
473
4f5bd885 474 einfo (_("%P: note to link with %s use -l:%s or rename it to lib%s\n"),
77bf7b53
NC
475 entry->filename, base, base);
476 bfd_close (entry->the_bfd);
477 entry->the_bfd = NULL;
478 break;
479 }
480 }
66be1055
AM
481 entry->flags.missing_file = TRUE;
482 input_flags.missing_file = TRUE;
c4b78195 483 }
252b5132
RH
484 }
485}
486
f4a23d42 487/* Try to open NAME. */
252b5132
RH
488
489static FILE *
f4a23d42 490try_open (const char *name, bfd_boolean *sysrooted)
252b5132
RH
491{
492 FILE *result;
252b5132
RH
493
494 result = fopen (name, "r");
4de2d33d 495
f4a23d42
AM
496 if (result != NULL)
497 *sysrooted = is_sysrooted_pathname (name);
498
cd6f1cf3 499 if (verbose)
252b5132
RH
500 {
501 if (result == NULL)
502 info_msg (_("cannot find script file %s\n"), name);
503 else
504 info_msg (_("opened script file %s\n"), name);
505 }
506
252b5132
RH
507 return result;
508}
509
a8caa245
AM
510/* Return TRUE iff directory DIR contains an "ldscripts" subdirectory. */
511
512static bfd_boolean
513check_for_scripts_dir (char *dir)
514{
515 char *buf;
516 struct stat s;
517 bfd_boolean res;
518
519 buf = concat (dir, "/ldscripts", (const char *) NULL);
520 res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode);
521 free (buf);
522 return res;
523}
524
525/* Return the default directory for finding script files.
526 We look for the "ldscripts" directory in:
527
528 SCRIPTDIR (passed from Makefile)
529 (adjusted according to the current location of the binary)
c38b10fa 530 the dir where this program is (for using it from the build tree). */
a8caa245
AM
531
532static char *
533find_scripts_dir (void)
534{
c38b10fa 535 char *dir;
a8caa245
AM
536
537 dir = make_relative_prefix (program_name, BINDIR, SCRIPTDIR);
538 if (dir)
539 {
540 if (check_for_scripts_dir (dir))
541 return dir;
542 free (dir);
543 }
544
545 dir = make_relative_prefix (program_name, TOOLBINDIR, SCRIPTDIR);
546 if (dir)
547 {
548 if (check_for_scripts_dir (dir))
549 return dir;
550 free (dir);
551 }
552
a8caa245 553 /* Look for "ldscripts" in the dir where our binary is. */
c38b10fa
AM
554 dir = make_relative_prefix (program_name, ".", ".");
555 if (dir)
556 {
557 if (check_for_scripts_dir (dir))
558 return dir;
559 free (dir);
560 }
a8caa245 561
a8caa245
AM
562 return NULL;
563}
564
8c3e16f4
L
565/* If DEFAULT_ONLY is false, try to open NAME; if that fails, look for
566 it in directories specified with -L, then in the default script
f4a23d42
AM
567 directory. If DEFAULT_ONLY is true, the search is restricted to
568 the default script location. */
252b5132 569
279e75dc 570static FILE *
f4a23d42
AM
571ldfile_find_command_file (const char *name,
572 bfd_boolean default_only,
573 bfd_boolean *sysrooted)
252b5132
RH
574{
575 search_dirs_type *search;
32252ac1 576 FILE *result = NULL;
f4a23d42 577 char *path;
a8caa245 578 static search_dirs_type *script_search;
252b5132 579
8c3e16f4
L
580 if (!default_only)
581 {
582 /* First try raw name. */
f4a23d42 583 result = try_open (name, sysrooted);
8c3e16f4
L
584 if (result != NULL)
585 return result;
586 }
a8caa245
AM
587
588 if (!script_search)
1c64c4ed 589 {
a8caa245
AM
590 char *script_dir = find_scripts_dir ();
591 if (script_dir)
1c64c4ed 592 {
a8caa245
AM
593 search_dirs_type **save_tail_ptr = search_tail_ptr;
594 search_tail_ptr = &script_search;
595 ldfile_add_library_path (script_dir, TRUE);
596 search_tail_ptr = save_tail_ptr;
1c64c4ed 597 }
a8caa245
AM
598 }
599
7d24f02c
KH
600 /* Temporarily append script_search to the path list so that the
601 paths specified with -L will be searched first. */
602 *search_tail_ptr = script_search;
603
a8caa245 604 /* Try now prefixes. */
7d24f02c
KH
605 for (search = default_only ? script_search : search_head;
606 search != NULL;
607 search = search->next)
a8caa245 608 {
f4a23d42
AM
609 path = concat (search->name, slash, name, (const char *) NULL);
610 result = try_open (path, sysrooted);
611 free (path);
a8caa245
AM
612 if (result)
613 break;
252b5132 614 }
4de2d33d 615
7d24f02c
KH
616 /* Restore the original path list. */
617 *search_tail_ptr = NULL;
618
252b5132
RH
619 return result;
620}
621
82d7a6f4
AM
622enum script_open_style {
623 script_nonT,
624 script_T,
625 script_defaultT
626};
627
628struct script_name_list
629{
630 struct script_name_list *next;
631 enum script_open_style open_how;
632 char name[1];
633};
634
7d24f02c
KH
635/* Open command file NAME. */
636
637static void
82d7a6f4 638ldfile_open_command_file_1 (const char *name, enum script_open_style open_how)
252b5132
RH
639{
640 FILE *ldlex_input_stack;
f4a23d42 641 bfd_boolean sysrooted;
82d7a6f4
AM
642 static struct script_name_list *processed_scripts = NULL;
643 struct script_name_list *script;
644 size_t len;
f4a23d42 645
82d7a6f4
AM
646 /* PR 24576: Catch the case where the user has accidentally included
647 the same linker script twice. */
648 for (script = processed_scripts; script != NULL; script = script->next)
6ec6968b 649 {
82d7a6f4
AM
650 if ((open_how != script_nonT || script->open_how != script_nonT)
651 && strcmp (name, script->name) == 0)
6ec6968b 652 {
82d7a6f4
AM
653 einfo (_("%F%P: error: linker script file '%s'"
654 " appears multiple times\n"), name);
655 return;
6ec6968b 656 }
6ec6968b
NC
657 }
658
82d7a6f4
AM
659 /* FIXME: This memory is never freed, but that should not really matter.
660 It will be released when the linker exits, and it is unlikely to ever
661 be more than a few tens of bytes. */
662 len = strlen (name);
663 script = xmalloc (sizeof (*script) + len);
664 script->next = processed_scripts;
665 script->open_how = open_how;
666 memcpy (script->name, name, len + 1);
667 processed_scripts = script;
668
669 ldlex_input_stack = ldfile_find_command_file (name,
670 open_how == script_defaultT,
671 &sysrooted);
1579bae1 672 if (ldlex_input_stack == NULL)
1c64c4ed
NC
673 {
674 bfd_set_error (bfd_error_system_call);
df5f2391 675 einfo (_("%F%P: cannot open linker script file %s: %E\n"), name);
3ab6909a 676 return;
1c64c4ed 677 }
4de2d33d 678
f4a23d42 679 lex_push_file (ldlex_input_stack, name, sysrooted);
4de2d33d 680
252b5132 681 lineno = 1;
b7a26f91 682
b9a8de1e 683 saved_script_handle = ldlex_input_stack;
252b5132
RH
684}
685
7d24f02c
KH
686/* Open command file NAME in the current directory, -L directories,
687 the default script location, in that order. */
688
689void
690ldfile_open_command_file (const char *name)
691{
82d7a6f4 692 ldfile_open_command_file_1 (name, script_nonT);
6ec6968b
NC
693}
694
695void
696ldfile_open_script_file (const char *name)
697{
82d7a6f4 698 ldfile_open_command_file_1 (name, script_T);
7d24f02c
KH
699}
700
701/* Open command file NAME at the default script location. */
702
703void
704ldfile_open_default_command_file (const char *name)
705{
82d7a6f4 706 ldfile_open_command_file_1 (name, script_defaultT);
7d24f02c
KH
707}
708
252b5132 709void
1579bae1 710ldfile_add_arch (const char *in_name)
252b5132 711{
d1b2b2dc 712 char *name = xstrdup (in_name);
0aa7f586
AM
713 search_arch_type *new_arch
714 = (search_arch_type *) xmalloc (sizeof (search_arch_type));
252b5132
RH
715
716 ldfile_output_machine_name = in_name;
717
d3ce72d0
NC
718 new_arch->name = name;
719 new_arch->next = NULL;
252b5132
RH
720 while (*name)
721 {
3882b010 722 *name = TOLOWER (*name);
252b5132
RH
723 name++;
724 }
d3ce72d0
NC
725 *search_arch_tail_ptr = new_arch;
726 search_arch_tail_ptr = &new_arch->next;
252b5132
RH
727
728}
252b5132 729
89cdebba
KH
730/* Set the output architecture. */
731
252b5132 732void
5e2f1575 733ldfile_set_output_arch (const char *string, enum bfd_architecture defarch)
252b5132 734{
1c64c4ed
NC
735 const bfd_arch_info_type *arch = bfd_scan_arch (string);
736
737 if (arch)
738 {
739 ldfile_output_architecture = arch->arch;
740 ldfile_output_machine = arch->mach;
741 ldfile_output_machine_name = arch->printable_name;
742 }
5e2f1575
AM
743 else if (defarch != bfd_arch_unknown)
744 ldfile_output_architecture = defarch;
1c64c4ed 745 else
df5f2391 746 einfo (_("%F%P: cannot represent machine `%s'\n"), string);
252b5132 747}
This page took 1.220338 seconds and 4 git commands to generate.