Roll ChangeLog / ChangeLog-2002.
[deliverable/binutils-gdb.git] / ld / ldmain.c
CommitLineData
252b5132 1/* Main program of GNU linker.
4e5bae56 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
cdc0d45e 3 2002, 2003
252b5132
RH
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain steve@cygnus.com
6
2fa9fc65 7 This file is part of GLD, the Gnu Linker.
252b5132 8
2fa9fc65
NC
9 GLD is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
252b5132 13
2fa9fc65
NC
14 GLD is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
252b5132 18
2fa9fc65
NC
19 You should have received a copy of the GNU General Public License
20 along with GLD; see the file COPYING. If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 02111-1307, USA. */
252b5132
RH
23
24#include "bfd.h"
25#include "sysdep.h"
26#include <stdio.h>
3882b010 27#include "safe-ctype.h"
252b5132
RH
28#include "libiberty.h"
29#include "progress.h"
30#include "bfdlink.h"
5af11cab 31#include "filenames.h"
252b5132
RH
32
33#include "ld.h"
34#include "ldmain.h"
35#include "ldmisc.h"
36#include "ldwrite.h"
252b5132
RH
37#include "ldexp.h"
38#include "ldlang.h"
df2a7313 39#include <ldgram.h>
252b5132
RH
40#include "ldlex.h"
41#include "ldfile.h"
b71e2778 42#include "ldemul.h"
252b5132
RH
43#include "ldctor.h"
44
6d5e62f8 45/* Somewhere above, sys/stat.h got included . . . . */
252b5132
RH
46#if !defined(S_ISDIR) && defined(S_IFDIR)
47#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
48#endif
49
50#include <string.h>
51
52#ifdef HAVE_SBRK
53#ifdef NEED_DECLARATION_SBRK
54extern PTR sbrk ();
55#endif
56#endif
57
9c8ebd6a
DJ
58#ifndef TARGET_SYSTEM_ROOT
59#define TARGET_SYSTEM_ROOT ""
60#endif
61
4e5bae56
DJ
62int main PARAMS ((int, char **));
63
252b5132
RH
64static char *get_emulation PARAMS ((int, char **));
65static void set_scripts_dir PARAMS ((void));
66
67/* EXPORTS */
68
69char *default_target;
70const char *output_filename = "a.out";
71
72/* Name this program was invoked by. */
73char *program_name;
74
9c8ebd6a
DJ
75/* The prefix for system library directories. */
76char *ld_sysroot;
77
6d5e62f8 78/* The file that we're creating. */
252b5132
RH
79bfd *output_bfd = 0;
80
81/* Set by -G argument, for MIPS ECOFF target. */
82int g_switch_value = 8;
83
84/* Nonzero means print names of input files as processed. */
b34976b6 85bfd_boolean trace_files;
252b5132
RH
86
87/* Nonzero means same, but note open failures, too. */
b34976b6 88bfd_boolean trace_file_tries;
252b5132
RH
89
90/* Nonzero means version number was printed, so exit successfully
91 instead of complaining if no input files are given. */
b34976b6 92bfd_boolean version_printed;
252b5132
RH
93
94/* Nonzero means link in every member of an archive. */
b34976b6 95bfd_boolean whole_archive;
252b5132 96
b34976b6
AM
97/* TRUE if we should demangle symbol names. */
98bfd_boolean demangling;
252b5132
RH
99
100args_type command_line;
101
102ld_config_type config;
103
104static void remove_output PARAMS ((void));
b34976b6
AM
105static bfd_boolean check_for_scripts_dir PARAMS ((char *dir));
106static bfd_boolean add_archive_element PARAMS ((struct bfd_link_info *, bfd *,
252b5132 107 const char *));
b34976b6 108static bfd_boolean multiple_definition PARAMS ((struct bfd_link_info *,
252b5132
RH
109 const char *,
110 bfd *, asection *, bfd_vma,
111 bfd *, asection *, bfd_vma));
b34976b6 112static bfd_boolean multiple_common PARAMS ((struct bfd_link_info *,
252b5132
RH
113 const char *, bfd *,
114 enum bfd_link_hash_type, bfd_vma,
115 bfd *, enum bfd_link_hash_type,
116 bfd_vma));
b34976b6 117static bfd_boolean add_to_set PARAMS ((struct bfd_link_info *,
252b5132
RH
118 struct bfd_link_hash_entry *,
119 bfd_reloc_code_real_type,
120 bfd *, asection *, bfd_vma));
b34976b6
AM
121static bfd_boolean constructor_callback PARAMS ((struct bfd_link_info *,
122 bfd_boolean constructor,
252b5132
RH
123 const char *name,
124 bfd *, asection *, bfd_vma));
b34976b6 125static bfd_boolean warning_callback PARAMS ((struct bfd_link_info *,
252b5132
RH
126 const char *, const char *, bfd *,
127 asection *, bfd_vma));
128static void warning_find_reloc PARAMS ((bfd *, asection *, PTR));
b34976b6 129static bfd_boolean undefined_symbol PARAMS ((struct bfd_link_info *,
252b5132 130 const char *, bfd *,
b34976b6
AM
131 asection *, bfd_vma, bfd_boolean));
132static bfd_boolean reloc_overflow PARAMS ((struct bfd_link_info *, const char *,
252b5132
RH
133 const char *, bfd_vma,
134 bfd *, asection *, bfd_vma));
b34976b6 135static bfd_boolean reloc_dangerous PARAMS ((struct bfd_link_info *, const char *,
252b5132 136 bfd *, asection *, bfd_vma));
b34976b6 137static bfd_boolean unattached_reloc PARAMS ((struct bfd_link_info *,
252b5132
RH
138 const char *, bfd *, asection *,
139 bfd_vma));
b34976b6 140static bfd_boolean notice PARAMS ((struct bfd_link_info *, const char *,
252b5132
RH
141 bfd *, asection *, bfd_vma));
142
6d5e62f8 143static struct bfd_link_callbacks link_callbacks = {
252b5132
RH
144 add_archive_element,
145 multiple_definition,
146 multiple_common,
147 add_to_set,
148 constructor_callback,
149 warning_callback,
150 undefined_symbol,
151 reloc_overflow,
152 reloc_dangerous,
153 unattached_reloc,
154 notice
155};
156
157struct bfd_link_info link_info;
158\f
159static void
160remove_output ()
161{
6d5e62f8 162 if (output_filename)
252b5132
RH
163 {
164 if (output_bfd && output_bfd->iostream)
6d5e62f8 165 fclose ((FILE *) (output_bfd->iostream));
252b5132
RH
166 if (delete_output_file_on_failure)
167 unlink (output_filename);
168 }
169}
170
171int
172main (argc, argv)
173 int argc;
174 char **argv;
175{
176 char *emulation;
177 long start_time = get_run_time ();
178
179#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
180 setlocale (LC_MESSAGES, "");
3882b010
L
181#endif
182#if defined (HAVE_SETLOCALE)
183 setlocale (LC_CTYPE, "");
252b5132
RH
184#endif
185 bindtextdomain (PACKAGE, LOCALEDIR);
186 textdomain (PACKAGE);
187
188 program_name = argv[0];
189 xmalloc_set_program_name (program_name);
190
191 START_PROGRESS (program_name, 0);
192
193 bfd_init ();
194
195 bfd_set_error_program_name (program_name);
196
197 xatexit (remove_output);
198
9c8ebd6a
DJ
199#ifdef TARGET_SYSTEM_ROOT_RELOCATABLE
200 ld_sysroot = make_relative_prefix (program_name, BINDIR,
201 TARGET_SYSTEM_ROOT);
202 if (ld_sysroot)
203 {
204 struct stat s;
205 int res = stat (ld_sysroot, &s) == 0 && S_ISDIR (s.st_mode);
206 if (!res)
207 {
208 free (ld_sysroot);
209 ld_sysroot = TARGET_SYSTEM_ROOT;
210 }
211 }
a65fb609
DJ
212 else
213 ld_sysroot = TARGET_SYSTEM_ROOT;
9c8ebd6a
DJ
214#else
215 ld_sysroot = TARGET_SYSTEM_ROOT;
216#endif
217
252b5132
RH
218 /* Set the default BFD target based on the configured target. Doing
219 this permits the linker to be configured for a particular target,
220 and linked against a shared BFD library which was configured for
221 a different target. The macro TARGET is defined by Makefile. */
222 if (! bfd_set_default_target (TARGET))
223 {
224 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET);
225 xexit (1);
226 }
227
b47c4208
AM
228#if YYDEBUG
229 {
230 extern int yydebug;
231 yydebug = 1;
232 }
233#endif
234
252b5132 235 /* Initialize the data about options. */
b34976b6
AM
236 trace_files = trace_file_tries = version_printed = FALSE;
237 whole_archive = FALSE;
238 config.build_constructors = TRUE;
239 config.dynamic_link = FALSE;
240 config.has_shared = FALSE;
a854a4a7
AM
241 config.split_by_reloc = (unsigned) -1;
242 config.split_by_file = (bfd_size_type) -1;
b34976b6
AM
243 command_line.force_common_definition = FALSE;
244 command_line.inhibit_common_definition = FALSE;
252b5132
RH
245 command_line.interpreter = NULL;
246 command_line.rpath = NULL;
b34976b6
AM
247 command_line.warn_mismatch = TRUE;
248 command_line.check_section_addresses = TRUE;
312b768e 249 command_line.accept_unknown_input_arch = FALSE;
252b5132
RH
250
251 /* We initialize DEMANGLING based on the environment variable
252 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
253 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
254 environment. Acting the same way here lets us provide the same
255 interface by default. */
256 demangling = getenv ("COLLECT_NO_DEMANGLE") == NULL;
257
b34976b6
AM
258 link_info.relocateable = FALSE;
259 link_info.emitrelocations = FALSE;
b5067602 260 link_info.task_link = FALSE;
b34976b6
AM
261 link_info.shared = FALSE;
262 link_info.symbolic = FALSE;
263 link_info.export_dynamic = FALSE;
264 link_info.static_link = FALSE;
265 link_info.traditional_format = FALSE;
266 link_info.optimize = FALSE;
267 link_info.no_undefined = FALSE;
268 link_info.allow_shlib_undefined = FALSE;
269 link_info.allow_multiple_definition = FALSE;
270 link_info.allow_undefined_version = TRUE;
b5067602
AM
271 link_info.keep_memory = TRUE;
272 link_info.notice_all = FALSE;
273 link_info.nocopyreloc = FALSE;
274 link_info.new_dtags = FALSE;
275 link_info.combreloc = TRUE;
276 link_info.eh_frame_hdr = FALSE;
d5cd3933 277 link_info.strip_discarded = TRUE;
252b5132 278 link_info.strip = strip_none;
f5fa8ca2 279 link_info.discard = discard_sec_merge;
b5067602
AM
280 link_info.common_skip_ar_aymbols = bfd_link_common_skip_none;
281 link_info.callbacks = &link_callbacks;
252b5132
RH
282 link_info.hash = NULL;
283 link_info.keep_hash = NULL;
252b5132
RH
284 link_info.notice_hash = NULL;
285 link_info.wrap_hash = NULL;
b5067602
AM
286 link_info.input_bfds = NULL;
287 link_info.create_object_symbols_section = NULL;
288 link_info.gc_sym_list = NULL;
289 link_info.base_file = NULL;
3dbf70a2
MM
290 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
291 and _fini symbols. We are compatible. */
292 link_info.init_function = "_init";
293 link_info.fini_function = "_fini";
b5067602 294 link_info.mpc860c0 = 0;
e0076ab3 295 link_info.pei386_auto_import = -1;
b34976b6 296 link_info.pei386_runtime_pseudo_reloc = FALSE;
db6751f2 297 link_info.spare_dynamic_tags = 5;
b5067602
AM
298 link_info.flags = (bfd_vma) 0;
299 link_info.flags_1 = (bfd_vma) 0;
3dbf70a2 300
252b5132
RH
301 ldfile_add_arch ("");
302
b34976b6
AM
303 config.make_executable = TRUE;
304 force_make_executable = FALSE;
305 config.magic_demand_paged = TRUE;
306 config.text_read_only = TRUE;
252b5132
RH
307
308 emulation = get_emulation (argc, argv);
309 ldemul_choose_mode (emulation);
742aeb63 310 default_target = ldemul_choose_target (argc, argv);
252b5132
RH
311 lang_init ();
312 ldemul_before_parse ();
b34976b6 313 lang_has_input_file = FALSE;
252b5132
RH
314 parse_args (argc, argv);
315
316 ldemul_set_symbols ();
317
318 if (link_info.relocateable)
319 {
320 if (command_line.gc_sections)
321 einfo ("%P%F: --gc-sections and -r may not be used together\n");
322 if (link_info.mpc860c0)
323 einfo (_("%P%F: -r and --mpc860c0 may not be used together\n"));
324 else if (command_line.relax)
325 einfo (_("%P%F: --relax and -r may not be used together\n"));
326 if (link_info.shared)
327 einfo (_("%P%F: -r and -shared may not be used together\n"));
328 }
329
7333607e
JJ
330 if (! link_info.shared)
331 {
332 if (command_line.filter_shlib)
e97cb84f 333 einfo (_("%P%F: -F may not be used without -shared\n"));
7333607e 334 if (command_line.auxiliary_filters)
e97cb84f 335 einfo (_("%P%F: -f may not be used without -shared\n"));
7333607e
JJ
336 }
337
252b5132
RH
338 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
339 don't see how else this can be handled, since in this case we
340 must preserve all externally visible symbols. */
341 if (link_info.relocateable && link_info.strip == strip_all)
342 {
343 link_info.strip = strip_debugger;
f5fa8ca2 344 if (link_info.discard == discard_sec_merge)
252b5132
RH
345 link_info.discard = discard_all;
346 }
347
348 /* This essentially adds another -L directory so this must be done after
349 the -L's in argv have been processed. */
350 set_scripts_dir ();
351
b9a8de1e
NC
352 /* If we have not already opened and parsed a linker script
353 read the emulation's appropriate default script. */
b90e1c6f 354 if (saved_script_handle == NULL)
252b5132 355 {
252b5132 356 int isfile;
b7a26f91 357 char *s = ldemul_get_script (&isfile);
252b5132
RH
358
359 if (isfile)
360 ldfile_open_command_file (s);
361 else
b7a26f91 362 {
252b5132
RH
363 lex_string = s;
364 lex_redirect (s);
365 }
366 parser_input = input_script;
367 yyparse ();
368 lex_string = NULL;
369 }
370
b9a8de1e
NC
371 if (trace_file_tries)
372 {
9cb61eab
AM
373 if (saved_script_handle)
374 info_msg (_("using external linker script:"));
375 else
376 info_msg (_("using internal linker script:"));
377 info_msg ("\n==================================================\n");
b9a8de1e
NC
378
379 if (saved_script_handle)
380 {
74699268 381 static const int ld_bufsz = 8193;
b9a8de1e 382 size_t n;
74699268 383 char *buf = xmalloc (ld_bufsz);
b9a8de1e
NC
384
385 rewind (saved_script_handle);
74699268 386 while ((n = fread (buf, 1, ld_bufsz - 1, saved_script_handle)) > 0)
b9a8de1e 387 {
b7a26f91 388 buf[n] = 0;
b9a8de1e
NC
389 info_msg (buf);
390 }
391 rewind (saved_script_handle);
392 free (buf);
393 }
394 else
395 {
396 int isfile;
397
b7a26f91 398 info_msg (ldemul_get_script (&isfile));
b9a8de1e 399 }
b7a26f91 400
b9a8de1e
NC
401 info_msg ("\n==================================================\n");
402 }
403
252b5132
RH
404 lang_final ();
405
b34976b6 406 if (!lang_has_input_file)
252b5132
RH
407 {
408 if (version_printed)
409 xexit (0);
410 einfo (_("%P%F: no input files\n"));
411 }
412
413 if (trace_files)
414 {
415 info_msg (_("%P: mode %s\n"), emulation);
416 }
417
418 ldemul_after_parse ();
419
252b5132
RH
420 if (config.map_filename)
421 {
422 if (strcmp (config.map_filename, "-") == 0)
423 {
424 config.map_file = stdout;
425 }
426 else
427 {
428 config.map_file = fopen (config.map_filename, FOPEN_WT);
429 if (config.map_file == (FILE *) NULL)
430 {
431 bfd_set_error (bfd_error_system_call);
432 einfo (_("%P%F: cannot open map file %s: %E\n"),
433 config.map_filename);
434 }
435 }
436 }
437
252b5132
RH
438 lang_process ();
439
440 /* Print error messages for any missing symbols, for any warning
6d5e62f8 441 symbols, and possibly multiple definitions. */
252b5132 442
252b5132
RH
443 if (link_info.relocateable)
444 output_bfd->flags &= ~EXEC_P;
445 else
446 output_bfd->flags |= EXEC_P;
447
448 ldwrite ();
449
450 if (config.map_file != NULL)
451 lang_map ();
452 if (command_line.cref)
453 output_cref (config.map_file != NULL ? config.map_file : stdout);
454 if (nocrossref_list != NULL)
455 check_nocrossrefs ();
456
457 /* Even if we're producing relocateable output, some non-fatal errors should
458 be reported in the exit status. (What non-fatal errors, if any, do we
459 want to ignore for relocateable output?) */
460
b34976b6 461 if (!config.make_executable && !force_make_executable)
252b5132 462 {
b34976b6 463 if (trace_files)
252b5132
RH
464 {
465 einfo (_("%P: link errors found, deleting executable `%s'\n"),
466 output_filename);
467 }
468
469 /* The file will be removed by remove_output. */
470
471 xexit (1);
472 }
473 else
474 {
475 if (! bfd_close (output_bfd))
476 einfo (_("%F%B: final close failed: %E\n"), output_bfd);
477
478 /* If the --force-exe-suffix is enabled, and we're making an
6d5e62f8
KH
479 executable file and it doesn't end in .exe, copy it to one
480 which does. */
252b5132
RH
481 if (! link_info.relocateable && command_line.force_exe_suffix)
482 {
483 int len = strlen (output_filename);
6d5e62f8 484 if (len < 4
252b5132
RH
485 || (strcasecmp (output_filename + len - 4, ".exe") != 0
486 && strcasecmp (output_filename + len - 4, ".dll") != 0))
487 {
488 FILE *src;
489 FILE *dst;
490 const int bsize = 4096;
491 char *buf = xmalloc (bsize);
492 int l;
493 char *dst_name = xmalloc (len + 5);
494 strcpy (dst_name, output_filename);
495 strcat (dst_name, ".exe");
496 src = fopen (output_filename, FOPEN_RB);
497 dst = fopen (dst_name, FOPEN_WB);
498
499 if (!src)
500 einfo (_("%X%P: unable to open for source of copy `%s'\n"), output_filename);
501 if (!dst)
502 einfo (_("%X%P: unable to open for destination of copy `%s'\n"), dst_name);
503 while ((l = fread (buf, 1, bsize, src)) > 0)
504 {
505 int done = fwrite (buf, 1, l, dst);
506 if (done != l)
507 {
508 einfo (_("%P: Error writing file `%s'\n"), dst_name);
509 }
510 }
511 fclose (src);
512 if (fclose (dst) == EOF)
513 {
514 einfo (_("%P: Error closing file `%s'\n"), dst_name);
515 }
516 free (dst_name);
517 free (buf);
518 }
519 }
520 }
521
522 END_PROGRESS (program_name);
523
524 if (config.stats)
525 {
526#ifdef HAVE_SBRK
527 char *lim = (char *) sbrk (0);
528#endif
529 long run_time = get_run_time () - start_time;
530
531 fprintf (stderr, _("%s: total time in link: %ld.%06ld\n"),
532 program_name, run_time / 1000000, run_time % 1000000);
533#ifdef HAVE_SBRK
534 fprintf (stderr, _("%s: data size %ld\n"), program_name,
535 (long) (lim - (char *) &environ));
536#endif
537 }
538
539 /* Prevent remove_output from doing anything, after a successful link. */
540 output_filename = NULL;
541
542 xexit (0);
543 return 0;
544}
545
546/* We need to find any explicitly given emulation in order to initialize the
547 state that's needed by the lex&yacc argument parser (parse_args). */
548
549static char *
550get_emulation (argc, argv)
551 int argc;
552 char **argv;
553{
554 char *emulation;
555 int i;
556
557 emulation = getenv (EMULATION_ENVIRON);
558 if (emulation == NULL)
559 emulation = DEFAULT_EMULATION;
560
561 for (i = 1; i < argc; i++)
562 {
563 if (!strncmp (argv[i], "-m", 2))
564 {
565 if (argv[i][2] == '\0')
566 {
567 /* -m EMUL */
568 if (i < argc - 1)
569 {
570 emulation = argv[i + 1];
571 i++;
572 }
573 else
574 {
6d5e62f8 575 einfo (_("%P%F: missing argument to -m\n"));
252b5132
RH
576 }
577 }
578 else if (strcmp (argv[i], "-mips1") == 0
579 || strcmp (argv[i], "-mips2") == 0
580 || strcmp (argv[i], "-mips3") == 0
39e5585e
EC
581 || strcmp (argv[i], "-mips32") == 0
582 || strcmp (argv[i], "-mips64") == 0
d1cf510e
NC
583 || strcmp (argv[i], "-mips4") == 0
584 || strcmp (argv[i], "-mips5") == 0)
252b5132 585 {
31d677f9 586 /* FIXME: The arguments -mips1, -mips2, -mips3, etc. are
252b5132
RH
587 passed to the linker by some MIPS compilers. They
588 generally tell the linker to use a slightly different
589 library path. Perhaps someday these should be
590 implemented as emulations; until then, we just ignore
591 the arguments and hope that nobody ever creates
592 emulations named ips1, ips2 or ips3. */
593 }
594 else if (strcmp (argv[i], "-m486") == 0)
595 {
596 /* FIXME: The argument -m486 is passed to the linker on
597 some Linux systems. Hope that nobody creates an
598 emulation named 486. */
599 }
600 else
601 {
602 /* -mEMUL */
603 emulation = &argv[i][2];
604 }
605 }
606 }
607
608 return emulation;
609}
610
611/* If directory DIR contains an "ldscripts" subdirectory,
b34976b6
AM
612 add DIR to the library search path and return TRUE,
613 else return FALSE. */
252b5132 614
b34976b6 615static bfd_boolean
252b5132
RH
616check_for_scripts_dir (dir)
617 char *dir;
618{
619 size_t dirlen;
620 char *buf;
621 struct stat s;
b34976b6 622 bfd_boolean res;
252b5132
RH
623
624 dirlen = strlen (dir);
625 /* sizeof counts the terminating NUL. */
6d5e62f8 626 buf = (char *) xmalloc (dirlen + sizeof ("/ldscripts"));
252b5132
RH
627 sprintf (buf, "%s/ldscripts", dir);
628
629 res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode);
630 free (buf);
631 if (res)
b34976b6 632 ldfile_add_library_path (dir, FALSE);
252b5132
RH
633 return res;
634}
635
636/* Set the default directory for finding script files.
637 Libraries will be searched for here too, but that's ok.
638 We look for the "ldscripts" directory in:
639
cdc0d45e
DJ
640 SCRIPTDIR (passed from Makefile)
641 (adjusted according to the current location of the binary)
252b5132
RH
642 SCRIPTDIR (passed from Makefile)
643 the dir where this program is (for using it from the build tree)
cdc0d45e
DJ
644 the dir where this program is/../lib
645 (for installing the tool suite elsewhere) */
252b5132
RH
646
647static void
648set_scripts_dir ()
649{
650 char *end, *dir;
651 size_t dirlen;
652
cdc0d45e
DJ
653 dir = make_relative_prefix (program_name, BINDIR, SCRIPTDIR);
654 if (dir && check_for_scripts_dir (dir))
655 /* Success. Don't free dir. */
656 return;
657
658 if (dir)
659 free (dir);
660
252b5132 661 if (check_for_scripts_dir (SCRIPTDIR))
6d5e62f8
KH
662 /* We've been installed normally. */
663 return;
252b5132
RH
664
665 /* Look for "ldscripts" in the dir where our binary is. */
666 end = strrchr (program_name, '/');
5af11cab
AM
667#ifdef HAVE_DOS_BASED_FILE_SYSTEM
668 {
669 /* We could have \foo\bar, or /foo\bar. */
670 char *bslash = strrchr (program_name, '\\');
2ab47eed 671 if (end == NULL || (bslash != NULL && bslash > end))
5af11cab
AM
672 end = bslash;
673 }
674#endif
252b5132
RH
675
676 if (end == NULL)
677 {
678 /* Don't look for ldscripts in the current directory. There is
679 too much potential for confusion. */
680 return;
681 }
682
683 dirlen = end - program_name;
684 /* Make a copy of program_name in dir.
685 Leave room for later "/../lib". */
686 dir = (char *) xmalloc (dirlen + 8);
687 strncpy (dir, program_name, dirlen);
688 dir[dirlen] = '\0';
689
690 if (check_for_scripts_dir (dir))
6d5e62f8
KH
691 /* Don't free dir. */
692 return;
252b5132
RH
693
694 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
695 strcpy (dir + dirlen, "/../lib");
696 if (check_for_scripts_dir (dir))
697 return;
698
6d5e62f8
KH
699 /* Well, we tried. */
700 free (dir);
252b5132
RH
701}
702
703void
704add_ysym (name)
705 const char *name;
706{
707 if (link_info.notice_hash == (struct bfd_hash_table *) NULL)
708 {
709 link_info.notice_hash = ((struct bfd_hash_table *)
710 xmalloc (sizeof (struct bfd_hash_table)));
711 if (! bfd_hash_table_init_n (link_info.notice_hash,
712 bfd_hash_newfunc,
713 61))
714 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
6d5e62f8 715 }
252b5132 716
b34976b6 717 if (bfd_hash_lookup (link_info.notice_hash, name, TRUE, TRUE)
252b5132
RH
718 == (struct bfd_hash_entry *) NULL)
719 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
720}
721
722/* Record a symbol to be wrapped, from the --wrap option. */
723
724void
725add_wrap (name)
726 const char *name;
727{
728 if (link_info.wrap_hash == NULL)
729 {
730 link_info.wrap_hash = ((struct bfd_hash_table *)
731 xmalloc (sizeof (struct bfd_hash_table)));
732 if (! bfd_hash_table_init_n (link_info.wrap_hash,
733 bfd_hash_newfunc,
734 61))
735 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
736 }
b34976b6 737 if (bfd_hash_lookup (link_info.wrap_hash, name, TRUE, TRUE) == NULL)
252b5132
RH
738 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
739}
740
741/* Handle the -retain-symbols-file option. */
742
743void
744add_keepsyms_file (filename)
745 const char *filename;
746{
747 FILE *file;
748 char *buf;
749 size_t bufsize;
750 int c;
751
752 if (link_info.strip == strip_some)
753 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
754
755 file = fopen (filename, "r");
756 if (file == (FILE *) NULL)
757 {
758 bfd_set_error (bfd_error_system_call);
759 einfo ("%X%P: %s: %E\n", filename);
760 return;
761 }
762
763 link_info.keep_hash = ((struct bfd_hash_table *)
764 xmalloc (sizeof (struct bfd_hash_table)));
765 if (! bfd_hash_table_init (link_info.keep_hash, bfd_hash_newfunc))
766 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
767
768 bufsize = 100;
769 buf = (char *) xmalloc (bufsize);
770
771 c = getc (file);
772 while (c != EOF)
773 {
3882b010 774 while (ISSPACE (c))
252b5132
RH
775 c = getc (file);
776
777 if (c != EOF)
778 {
779 size_t len = 0;
780
3882b010 781 while (! ISSPACE (c) && c != EOF)
252b5132
RH
782 {
783 buf[len] = c;
784 ++len;
785 if (len >= bufsize)
786 {
787 bufsize *= 2;
788 buf = xrealloc (buf, bufsize);
789 }
790 c = getc (file);
791 }
792
793 buf[len] = '\0';
794
b34976b6 795 if (bfd_hash_lookup (link_info.keep_hash, buf, TRUE, TRUE)
252b5132
RH
796 == (struct bfd_hash_entry *) NULL)
797 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
798 }
799 }
800
801 if (link_info.strip != strip_none)
802 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
803
804 link_info.strip = strip_some;
805}
806\f
807/* Callbacks from the BFD linker routines. */
808
809/* This is called when BFD has decided to include an archive member in
810 a link. */
811
b34976b6 812static bfd_boolean
252b5132 813add_archive_element (info, abfd, name)
87f2a346 814 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
815 bfd *abfd;
816 const char *name;
817{
818 lang_input_statement_type *input;
819
820 input = ((lang_input_statement_type *)
821 xmalloc (sizeof (lang_input_statement_type)));
822 input->filename = abfd->filename;
823 input->local_sym_name = abfd->filename;
824 input->the_bfd = abfd;
825 input->asymbols = NULL;
826 input->next = NULL;
b34976b6
AM
827 input->just_syms_flag = FALSE;
828 input->loaded = FALSE;
829 input->search_dirs_flag = FALSE;
252b5132
RH
830
831 /* FIXME: The following fields are not set: header.next,
832 header.type, closed, passive_position, symbol_count,
833 next_real_file, is_archive, target, real. This bit of code is
834 from the old decode_library_subfile function. I don't know
835 whether any of those fields matters. */
836
837 ldlang_add_file (input);
838
839 if (config.map_file != (FILE *) NULL)
840 {
b34976b6 841 static bfd_boolean header_printed;
252b5132
RH
842 struct bfd_link_hash_entry *h;
843 bfd *from;
844 int len;
845
b34976b6 846 h = bfd_link_hash_lookup (link_info.hash, name, FALSE, FALSE, TRUE);
252b5132
RH
847
848 if (h == NULL)
849 from = NULL;
850 else
851 {
852 switch (h->type)
853 {
854 default:
855 from = NULL;
856 break;
857
858 case bfd_link_hash_defined:
859 case bfd_link_hash_defweak:
860 from = h->u.def.section->owner;
861 break;
862
863 case bfd_link_hash_undefined:
864 case bfd_link_hash_undefweak:
865 from = h->u.undef.abfd;
866 break;
867
868 case bfd_link_hash_common:
869 from = h->u.c.p->section->owner;
870 break;
871 }
872 }
873
874 if (! header_printed)
875 {
876 char buf[100];
877
e3c8793a 878 sprintf (buf, _("Archive member included because of file (symbol)\n\n"));
252b5132 879 minfo ("%s", buf);
b34976b6 880 header_printed = TRUE;
252b5132
RH
881 }
882
883 if (bfd_my_archive (abfd) == NULL)
884 {
885 minfo ("%s", bfd_get_filename (abfd));
886 len = strlen (bfd_get_filename (abfd));
887 }
888 else
889 {
890 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd)),
891 bfd_get_filename (abfd));
892 len = (strlen (bfd_get_filename (bfd_my_archive (abfd)))
893 + strlen (bfd_get_filename (abfd))
894 + 2);
895 }
896
897 if (len >= 29)
898 {
899 print_nl ();
900 len = 0;
901 }
902 while (len < 30)
903 {
904 print_space ();
905 ++len;
906 }
907
908 if (from != NULL)
909 minfo ("%B ", from);
910 if (h != NULL)
911 minfo ("(%T)\n", h->root.string);
912 else
913 minfo ("(%s)\n", name);
914 }
915
916 if (trace_files || trace_file_tries)
917 info_msg ("%I\n", input);
918
b34976b6 919 return TRUE;
252b5132
RH
920}
921
922/* This is called when BFD has discovered a symbol which is defined
923 multiple times. */
924
b34976b6 925static bfd_boolean
252b5132 926multiple_definition (info, name, obfd, osec, oval, nbfd, nsec, nval)
87f2a346 927 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
928 const char *name;
929 bfd *obfd;
930 asection *osec;
931 bfd_vma oval;
932 bfd *nbfd;
933 asection *nsec;
934 bfd_vma nval;
935{
936 /* If either section has the output_section field set to
937 bfd_abs_section_ptr, it means that the section is being
938 discarded, and this is not really a multiple definition at all.
939 FIXME: It would be cleaner to somehow ignore symbols defined in
940 sections which are being discarded. */
941 if ((osec->output_section != NULL
942 && ! bfd_is_abs_section (osec)
943 && bfd_is_abs_section (osec->output_section))
944 || (nsec->output_section != NULL
945 && ! bfd_is_abs_section (nsec)
946 && bfd_is_abs_section (nsec->output_section)))
b34976b6 947 return TRUE;
252b5132
RH
948
949 einfo (_("%X%C: multiple definition of `%T'\n"),
950 nbfd, nsec, nval, name);
951 if (obfd != (bfd *) NULL)
952 einfo (_("%D: first defined here\n"), obfd, osec, oval);
9b14b192
NC
953
954 if (command_line.relax)
955 {
956 einfo (_("%P: Disabling relaxation: it will not work with multiple definitions\n"));
957 command_line.relax = 0;
958 }
6d5e62f8 959
b34976b6 960 return TRUE;
252b5132
RH
961}
962
963/* This is called when there is a definition of a common symbol, or
964 when a common symbol is found for a symbol that is already defined,
965 or when two common symbols are found. We only do something if
966 -warn-common was used. */
967
b34976b6 968static bfd_boolean
252b5132 969multiple_common (info, name, obfd, otype, osize, nbfd, ntype, nsize)
87f2a346 970 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
971 const char *name;
972 bfd *obfd;
973 enum bfd_link_hash_type otype;
974 bfd_vma osize;
975 bfd *nbfd;
976 enum bfd_link_hash_type ntype;
977 bfd_vma nsize;
978{
979 if (! config.warn_common)
b34976b6 980 return TRUE;
252b5132
RH
981
982 if (ntype == bfd_link_hash_defined
983 || ntype == bfd_link_hash_defweak
984 || ntype == bfd_link_hash_indirect)
985 {
986 ASSERT (otype == bfd_link_hash_common);
987 einfo (_("%B: warning: definition of `%T' overriding common\n"),
988 nbfd, name);
989 if (obfd != NULL)
990 einfo (_("%B: warning: common is here\n"), obfd);
991 }
992 else if (otype == bfd_link_hash_defined
993 || otype == bfd_link_hash_defweak
994 || otype == bfd_link_hash_indirect)
995 {
996 ASSERT (ntype == bfd_link_hash_common);
997 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
998 nbfd, name);
999 if (obfd != NULL)
1000 einfo (_("%B: warning: defined here\n"), obfd);
1001 }
1002 else
1003 {
1004 ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common);
1005 if (osize > nsize)
1006 {
1007 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
1008 nbfd, name);
1009 if (obfd != NULL)
1010 einfo (_("%B: warning: larger common is here\n"), obfd);
1011 }
1012 else if (nsize > osize)
1013 {
1014 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
1015 nbfd, name);
1016 if (obfd != NULL)
1017 einfo (_("%B: warning: smaller common is here\n"), obfd);
1018 }
1019 else
1020 {
1021 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd, name);
1022 if (obfd != NULL)
1023 einfo (_("%B: warning: previous common is here\n"), obfd);
1024 }
1025 }
1026
b34976b6 1027 return TRUE;
252b5132
RH
1028}
1029
1030/* This is called when BFD has discovered a set element. H is the
1031 entry in the linker hash table for the set. SECTION and VALUE
1032 represent a value which should be added to the set. */
1033
b34976b6 1034static bfd_boolean
252b5132 1035add_to_set (info, h, reloc, abfd, section, value)
87f2a346 1036 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1037 struct bfd_link_hash_entry *h;
1038 bfd_reloc_code_real_type reloc;
1039 bfd *abfd;
1040 asection *section;
1041 bfd_vma value;
1042{
1043 if (config.warn_constructors)
1044 einfo (_("%P: warning: global constructor %s used\n"),
1045 h->root.string);
1046
1047 if (! config.build_constructors)
b34976b6 1048 return TRUE;
252b5132
RH
1049
1050 ldctor_add_set_entry (h, reloc, (const char *) NULL, section, value);
1051
1052 if (h->type == bfd_link_hash_new)
1053 {
1054 h->type = bfd_link_hash_undefined;
1055 h->u.undef.abfd = abfd;
1056 /* We don't call bfd_link_add_undef to add this to the list of
1057 undefined symbols because we are going to define it
1058 ourselves. */
1059 }
1060
b34976b6 1061 return TRUE;
252b5132
RH
1062}
1063
1064/* This is called when BFD has discovered a constructor. This is only
1065 called for some object file formats--those which do not handle
1066 constructors in some more clever fashion. This is similar to
1067 adding an element to a set, but less general. */
1068
b34976b6 1069static bfd_boolean
252b5132
RH
1070constructor_callback (info, constructor, name, abfd, section, value)
1071 struct bfd_link_info *info;
b34976b6 1072 bfd_boolean constructor;
252b5132
RH
1073 const char *name;
1074 bfd *abfd;
1075 asection *section;
1076 bfd_vma value;
1077{
1078 char *s;
1079 struct bfd_link_hash_entry *h;
1080 char set_name[1 + sizeof "__CTOR_LIST__"];
1081
1082 if (config.warn_constructors)
1083 einfo (_("%P: warning: global constructor %s used\n"), name);
1084
1085 if (! config.build_constructors)
b34976b6 1086 return TRUE;
252b5132
RH
1087
1088 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
1089 useful error message. */
1090 if (bfd_reloc_type_lookup (output_bfd, BFD_RELOC_CTOR) == NULL
1091 && (link_info.relocateable
1092 || bfd_reloc_type_lookup (abfd, BFD_RELOC_CTOR) == NULL))
1093 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
1094
1095 s = set_name;
1096 if (bfd_get_symbol_leading_char (abfd) != '\0')
1097 *s++ = bfd_get_symbol_leading_char (abfd);
1098 if (constructor)
1099 strcpy (s, "__CTOR_LIST__");
1100 else
1101 strcpy (s, "__DTOR_LIST__");
1102
b34976b6 1103 h = bfd_link_hash_lookup (info->hash, set_name, TRUE, TRUE, TRUE);
252b5132
RH
1104 if (h == (struct bfd_link_hash_entry *) NULL)
1105 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1106 if (h->type == bfd_link_hash_new)
1107 {
1108 h->type = bfd_link_hash_undefined;
1109 h->u.undef.abfd = abfd;
1110 /* We don't call bfd_link_add_undef to add this to the list of
1111 undefined symbols because we are going to define it
1112 ourselves. */
1113 }
1114
1115 ldctor_add_set_entry (h, BFD_RELOC_CTOR, name, section, value);
b34976b6 1116 return TRUE;
252b5132
RH
1117}
1118
1119/* A structure used by warning_callback to pass information through
1120 bfd_map_over_sections. */
1121
89cdebba 1122struct warning_callback_info {
b34976b6 1123 bfd_boolean found;
252b5132
RH
1124 const char *warning;
1125 const char *symbol;
1126 asymbol **asymbols;
1127};
1128
1129/* This is called when there is a reference to a warning symbol. */
1130
b34976b6 1131static bfd_boolean
252b5132 1132warning_callback (info, warning, symbol, abfd, section, address)
87f2a346 1133 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1134 const char *warning;
1135 const char *symbol;
1136 bfd *abfd;
1137 asection *section;
1138 bfd_vma address;
1139{
1140 /* This is a hack to support warn_multiple_gp. FIXME: This should
1141 have a cleaner interface, but what? */
1142 if (! config.warn_multiple_gp
1143 && strcmp (warning, "using multiple gp values") == 0)
b34976b6 1144 return TRUE;
252b5132
RH
1145
1146 if (section != NULL)
1147 einfo ("%C: %s\n", abfd, section, address, warning);
1148 else if (abfd == NULL)
1149 einfo ("%P: %s\n", warning);
1150 else if (symbol == NULL)
1151 einfo ("%B: %s\n", abfd, warning);
1152 else
1153 {
1154 lang_input_statement_type *entry;
1155 asymbol **asymbols;
1156 struct warning_callback_info info;
1157
1158 /* Look through the relocs to see if we can find a plausible
1159 address. */
1160
1161 entry = (lang_input_statement_type *) abfd->usrdata;
1162 if (entry != NULL && entry->asymbols != NULL)
1163 asymbols = entry->asymbols;
1164 else
1165 {
1166 long symsize;
1167 long symbol_count;
1168
1169 symsize = bfd_get_symtab_upper_bound (abfd);
1170 if (symsize < 0)
1171 einfo (_("%B%F: could not read symbols: %E\n"), abfd);
1172 asymbols = (asymbol **) xmalloc (symsize);
1173 symbol_count = bfd_canonicalize_symtab (abfd, asymbols);
1174 if (symbol_count < 0)
1175 einfo (_("%B%F: could not read symbols: %E\n"), abfd);
1176 if (entry != NULL)
1177 {
1178 entry->asymbols = asymbols;
1179 entry->symbol_count = symbol_count;
1180 }
1181 }
1182
b34976b6 1183 info.found = FALSE;
252b5132
RH
1184 info.warning = warning;
1185 info.symbol = symbol;
1186 info.asymbols = asymbols;
1187 bfd_map_over_sections (abfd, warning_find_reloc, (PTR) &info);
1188
1189 if (! info.found)
1190 einfo ("%B: %s\n", abfd, warning);
1191
1192 if (entry == NULL)
1193 free (asymbols);
1194 }
1195
b34976b6 1196 return TRUE;
252b5132
RH
1197}
1198
1199/* This is called by warning_callback for each section. It checks the
1200 relocs of the section to see if it can find a reference to the
1201 symbol which triggered the warning. If it can, it uses the reloc
1202 to give an error message with a file and line number. */
1203
1204static void
1205warning_find_reloc (abfd, sec, iarg)
1206 bfd *abfd;
1207 asection *sec;
1208 PTR iarg;
1209{
1210 struct warning_callback_info *info = (struct warning_callback_info *) iarg;
1211 long relsize;
1212 arelent **relpp;
1213 long relcount;
1214 arelent **p, **pend;
1215
1216 if (info->found)
1217 return;
1218
1219 relsize = bfd_get_reloc_upper_bound (abfd, sec);
1220 if (relsize < 0)
1221 einfo (_("%B%F: could not read relocs: %E\n"), abfd);
1222 if (relsize == 0)
1223 return;
1224
1225 relpp = (arelent **) xmalloc (relsize);
1226 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols);
1227 if (relcount < 0)
1228 einfo (_("%B%F: could not read relocs: %E\n"), abfd);
1229
1230 p = relpp;
1231 pend = p + relcount;
1232 for (; p < pend && *p != NULL; p++)
1233 {
1234 arelent *q = *p;
1235
1236 if (q->sym_ptr_ptr != NULL
1237 && *q->sym_ptr_ptr != NULL
1238 && strcmp (bfd_asymbol_name (*q->sym_ptr_ptr), info->symbol) == 0)
1239 {
1240 /* We found a reloc for the symbol we are looking for. */
1241 einfo ("%C: %s\n", abfd, sec, q->address, info->warning);
b34976b6 1242 info->found = TRUE;
252b5132
RH
1243 break;
1244 }
1245 }
1246
1247 free (relpp);
1248}
1249
1250/* This is called when an undefined symbol is found. */
1251
b34976b6 1252static bfd_boolean
b6f29aaa 1253undefined_symbol (info, name, abfd, section, address, fatal)
87f2a346 1254 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1255 const char *name;
1256 bfd *abfd;
1257 asection *section;
1258 bfd_vma address;
b34976b6 1259 bfd_boolean fatal ATTRIBUTE_UNUSED;
252b5132
RH
1260{
1261 static char *error_name;
1262 static unsigned int error_count;
1263
1264#define MAX_ERRORS_IN_A_ROW 5
1265
1266 if (config.warn_once)
1267 {
1268 static struct bfd_hash_table *hash;
1269
1270 /* Only warn once about a particular undefined symbol. */
1271
1272 if (hash == NULL)
1273 {
1274 hash = ((struct bfd_hash_table *)
1275 xmalloc (sizeof (struct bfd_hash_table)));
1276 if (! bfd_hash_table_init (hash, bfd_hash_newfunc))
1277 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1278 }
1279
b34976b6
AM
1280 if (bfd_hash_lookup (hash, name, FALSE, FALSE) != NULL)
1281 return TRUE;
252b5132 1282
b34976b6 1283 if (bfd_hash_lookup (hash, name, TRUE, TRUE) == NULL)
252b5132
RH
1284 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1285 }
1286
1287 /* We never print more than a reasonable number of errors in a row
1288 for a single symbol. */
1289 if (error_name != (char *) NULL
1290 && strcmp (name, error_name) == 0)
1291 ++error_count;
1292 else
1293 {
1294 error_count = 0;
1295 if (error_name != (char *) NULL)
1296 free (error_name);
d1b2b2dc 1297 error_name = xstrdup (name);
252b5132
RH
1298 }
1299
1300 if (section != NULL)
1301 {
1302 if (error_count < MAX_ERRORS_IN_A_ROW)
b6f29aaa
L
1303 {
1304 einfo (_("%C: undefined reference to `%T'\n"),
1305 abfd, section, address, name);
1306 if (fatal)
1307 einfo ("%X");
1308 }
252b5132
RH
1309 else if (error_count == MAX_ERRORS_IN_A_ROW)
1310 einfo (_("%D: more undefined references to `%T' follow\n"),
1311 abfd, section, address, name);
1312 }
1313 else
1314 {
1315 if (error_count < MAX_ERRORS_IN_A_ROW)
b6f29aaa
L
1316 {
1317 einfo (_("%B: undefined reference to `%T'\n"),
1318 abfd, name);
1319 if (fatal)
1320 einfo ("%X");
1321 }
252b5132
RH
1322 else if (error_count == MAX_ERRORS_IN_A_ROW)
1323 einfo (_("%B: more undefined references to `%T' follow\n"),
1324 abfd, name);
1325 }
1326
b34976b6 1327 return TRUE;
252b5132
RH
1328}
1329
1330/* This is called when a reloc overflows. */
1331
b34976b6 1332static bfd_boolean
252b5132 1333reloc_overflow (info, name, reloc_name, addend, abfd, section, address)
87f2a346 1334 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1335 const char *name;
1336 const char *reloc_name;
1337 bfd_vma addend;
1338 bfd *abfd;
1339 asection *section;
1340 bfd_vma address;
1341{
1342 if (abfd == (bfd *) NULL)
1343 einfo (_("%P%X: generated"));
1344 else
1345 einfo ("%X%C:", abfd, section, address);
1346 einfo (_(" relocation truncated to fit: %s %T"), reloc_name, name);
1347 if (addend != 0)
1348 einfo ("+%v", addend);
1349 einfo ("\n");
b34976b6 1350 return TRUE;
252b5132
RH
1351}
1352
1353/* This is called when a dangerous relocation is made. */
1354
b34976b6 1355static bfd_boolean
252b5132 1356reloc_dangerous (info, message, abfd, section, address)
87f2a346 1357 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1358 const char *message;
1359 bfd *abfd;
1360 asection *section;
1361 bfd_vma address;
1362{
1363 if (abfd == (bfd *) NULL)
1364 einfo (_("%P%X: generated"));
1365 else
1366 einfo ("%X%C:", abfd, section, address);
1367 einfo (_("dangerous relocation: %s\n"), message);
b34976b6 1368 return TRUE;
252b5132
RH
1369}
1370
1371/* This is called when a reloc is being generated attached to a symbol
1372 that is not being output. */
1373
b34976b6 1374static bfd_boolean
252b5132 1375unattached_reloc (info, name, abfd, section, address)
87f2a346 1376 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1377 const char *name;
1378 bfd *abfd;
1379 asection *section;
1380 bfd_vma address;
1381{
1382 if (abfd == (bfd *) NULL)
1383 einfo (_("%P%X: generated"));
1384 else
1385 einfo ("%X%C:", abfd, section, address);
1386 einfo (_(" reloc refers to symbol `%T' which is not being output\n"), name);
b34976b6 1387 return TRUE;
252b5132
RH
1388}
1389
1390/* This is called if link_info.notice_all is set, or when a symbol in
1391 link_info.notice_hash is found. Symbols are put in notice_hash
1392 using the -y option. */
1393
b34976b6 1394static bfd_boolean
252b5132
RH
1395notice (info, name, abfd, section, value)
1396 struct bfd_link_info *info;
1397 const char *name;
1398 bfd *abfd;
1399 asection *section;
1400 bfd_vma value;
1401{
1402 if (! info->notice_all
1403 || (info->notice_hash != NULL
b34976b6 1404 && bfd_hash_lookup (info->notice_hash, name, FALSE, FALSE) != NULL))
252b5132
RH
1405 {
1406 if (bfd_is_und_section (section))
1407 einfo ("%B: reference to %s\n", abfd, name);
1408 else
1409 einfo ("%B: definition of %s\n", abfd, name);
1410 }
1411
1412 if (command_line.cref || nocrossref_list != NULL)
1413 add_cref (name, abfd, section, value);
1414
b34976b6 1415 return TRUE;
252b5132 1416}
This page took 0.211214 seconds and 4 git commands to generate.