1 /* Main program of GNU linker.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain steve@cygnus.com
7 This file is part of GLD, the Gnu Linker.
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)
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.
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
27 #include "safe-ctype.h"
28 #include "libiberty.h"
31 #include "filenames.h"
45 /* Somewhere above, sys/stat.h got included. */
46 #if !defined(S_ISDIR) && defined(S_IFDIR)
47 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
53 #ifdef NEED_DECLARATION_SBRK
58 #ifndef TARGET_SYSTEM_ROOT
59 #define TARGET_SYSTEM_ROOT ""
65 const char *output_filename
= "a.out";
67 /* Name this program was invoked by. */
70 /* The prefix for system library directories. */
73 /* The canonical representation of ld_sysroot. */
74 char * ld_canon_sysroot
;
75 int ld_canon_sysroot_len
;
77 /* The file that we're creating. */
80 /* Set by -G argument, for MIPS ECOFF target. */
81 int g_switch_value
= 8;
83 /* Nonzero means print names of input files as processed. */
84 bfd_boolean trace_files
;
86 /* Nonzero means same, but note open failures, too. */
87 bfd_boolean trace_file_tries
;
89 /* Nonzero means version number was printed, so exit successfully
90 instead of complaining if no input files are given. */
91 bfd_boolean version_printed
;
93 /* Nonzero means link in every member of an archive. */
94 bfd_boolean whole_archive
;
96 /* TRUE if we should demangle symbol names. */
97 bfd_boolean demangling
;
99 args_type command_line
;
101 ld_config_type config
;
103 static char *get_emulation
105 static void set_scripts_dir
107 static bfd_boolean add_archive_element
108 (struct bfd_link_info
*, bfd
*, const char *);
109 static bfd_boolean multiple_definition
110 (struct bfd_link_info
*, const char *, bfd
*, asection
*, bfd_vma
,
111 bfd
*, asection
*, bfd_vma
);
112 static bfd_boolean multiple_common
113 (struct bfd_link_info
*, const char *, bfd
*, enum bfd_link_hash_type
,
114 bfd_vma
, bfd
*, enum bfd_link_hash_type
, bfd_vma
);
115 static bfd_boolean add_to_set
116 (struct bfd_link_info
*, struct bfd_link_hash_entry
*,
117 bfd_reloc_code_real_type
, bfd
*, asection
*, bfd_vma
);
118 static bfd_boolean constructor_callback
119 (struct bfd_link_info
*, bfd_boolean
, const char *, bfd
*,
120 asection
*, bfd_vma
);
121 static bfd_boolean warning_callback
122 (struct bfd_link_info
*, const char *, const char *, bfd
*,
123 asection
*, bfd_vma
);
124 static void warning_find_reloc
125 (bfd
*, asection
*, void *);
126 static bfd_boolean undefined_symbol
127 (struct bfd_link_info
*, const char *, bfd
*, asection
*, bfd_vma
,
129 static bfd_boolean reloc_overflow
130 (struct bfd_link_info
*, const char *, const char *, bfd_vma
,
131 bfd
*, asection
*, bfd_vma
);
132 static bfd_boolean reloc_dangerous
133 (struct bfd_link_info
*, const char *, bfd
*, asection
*, bfd_vma
);
134 static bfd_boolean unattached_reloc
135 (struct bfd_link_info
*, const char *, bfd
*, asection
*, bfd_vma
);
136 static bfd_boolean notice
137 (struct bfd_link_info
*, const char *, bfd
*, asection
*, bfd_vma
);
139 static struct bfd_link_callbacks link_callbacks
=
145 constructor_callback
,
155 struct bfd_link_info link_info
;
163 bfd_cache_close (output_bfd
);
164 if (delete_output_file_on_failure
)
165 unlink (output_filename
);
170 main (int argc
, char **argv
)
173 long start_time
= get_run_time ();
175 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
176 setlocale (LC_MESSAGES
, "");
178 #if defined (HAVE_SETLOCALE)
179 setlocale (LC_CTYPE
, "");
181 bindtextdomain (PACKAGE
, LOCALEDIR
);
182 textdomain (PACKAGE
);
184 program_name
= argv
[0];
185 xmalloc_set_program_name (program_name
);
187 START_PROGRESS (program_name
, 0);
191 bfd_set_error_program_name (program_name
);
193 xatexit (remove_output
);
195 #ifdef TARGET_SYSTEM_ROOT_RELOCATABLE
196 ld_sysroot
= make_relative_prefix (program_name
, BINDIR
,
202 int res
= stat (ld_sysroot
, &s
) == 0 && S_ISDIR (s
.st_mode
);
213 ld_sysroot
= make_relative_prefix (program_name
, TOOLBINDIR
,
219 int res
= stat (ld_sysroot
, &s
) == 0 && S_ISDIR (s
.st_mode
);
231 ld_sysroot
= TARGET_SYSTEM_ROOT
;
233 if (ld_sysroot
&& *ld_sysroot
)
234 ld_canon_sysroot
= lrealpath (ld_sysroot
);
236 if (ld_canon_sysroot
)
237 ld_canon_sysroot_len
= strlen (ld_canon_sysroot
);
239 ld_canon_sysroot_len
= -1;
241 /* Set the default BFD target based on the configured target. Doing
242 this permits the linker to be configured for a particular target,
243 and linked against a shared BFD library which was configured for
244 a different target. The macro TARGET is defined by Makefile. */
245 if (! bfd_set_default_target (TARGET
))
247 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET
);
258 /* Initialize the data about options. */
259 trace_files
= trace_file_tries
= version_printed
= FALSE
;
260 whole_archive
= FALSE
;
261 config
.build_constructors
= TRUE
;
262 config
.dynamic_link
= FALSE
;
263 config
.has_shared
= FALSE
;
264 config
.split_by_reloc
= (unsigned) -1;
265 config
.split_by_file
= (bfd_size_type
) -1;
266 command_line
.force_common_definition
= FALSE
;
267 command_line
.inhibit_common_definition
= FALSE
;
268 command_line
.interpreter
= NULL
;
269 command_line
.rpath
= NULL
;
270 command_line
.warn_mismatch
= TRUE
;
271 command_line
.check_section_addresses
= TRUE
;
272 command_line
.accept_unknown_input_arch
= FALSE
;
274 /* We initialize DEMANGLING based on the environment variable
275 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
276 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
277 environment. Acting the same way here lets us provide the same
278 interface by default. */
279 demangling
= getenv ("COLLECT_NO_DEMANGLE") == NULL
;
281 link_info
.relocatable
= FALSE
;
282 link_info
.emitrelocations
= FALSE
;
283 link_info
.task_link
= FALSE
;
284 link_info
.shared
= FALSE
;
285 link_info
.pie
= FALSE
;
286 link_info
.executable
= FALSE
;
287 link_info
.symbolic
= FALSE
;
288 link_info
.export_dynamic
= FALSE
;
289 link_info
.static_link
= FALSE
;
290 link_info
.traditional_format
= FALSE
;
291 link_info
.optimize
= FALSE
;
292 link_info
.unresolved_syms_in_objects
= RM_NOT_YET_SET
;
293 link_info
.unresolved_syms_in_shared_libs
= RM_NOT_YET_SET
;
294 link_info
.allow_multiple_definition
= FALSE
;
295 link_info
.allow_undefined_version
= TRUE
;
296 link_info
.keep_memory
= TRUE
;
297 link_info
.notice_all
= FALSE
;
298 link_info
.nocopyreloc
= FALSE
;
299 link_info
.new_dtags
= FALSE
;
300 link_info
.combreloc
= TRUE
;
301 link_info
.eh_frame_hdr
= FALSE
;
302 link_info
.strip_discarded
= TRUE
;
303 link_info
.strip
= strip_none
;
304 link_info
.discard
= discard_sec_merge
;
305 link_info
.common_skip_ar_aymbols
= bfd_link_common_skip_none
;
306 link_info
.callbacks
= &link_callbacks
;
307 link_info
.hash
= NULL
;
308 link_info
.keep_hash
= NULL
;
309 link_info
.notice_hash
= NULL
;
310 link_info
.wrap_hash
= NULL
;
311 link_info
.input_bfds
= NULL
;
312 link_info
.create_object_symbols_section
= NULL
;
313 link_info
.gc_sym_list
= NULL
;
314 link_info
.base_file
= NULL
;
315 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
316 and _fini symbols. We are compatible. */
317 link_info
.init_function
= "_init";
318 link_info
.fini_function
= "_fini";
319 link_info
.pei386_auto_import
= -1;
320 link_info
.pei386_runtime_pseudo_reloc
= FALSE
;
321 link_info
.spare_dynamic_tags
= 5;
323 link_info
.flags_1
= 0;
324 link_info
.need_relax_finalize
= FALSE
;
326 ldfile_add_arch ("");
328 config
.make_executable
= TRUE
;
329 force_make_executable
= FALSE
;
330 config
.magic_demand_paged
= TRUE
;
331 config
.text_read_only
= TRUE
;
333 emulation
= get_emulation (argc
, argv
);
334 ldemul_choose_mode (emulation
);
335 default_target
= ldemul_choose_target (argc
, argv
);
337 ldemul_before_parse ();
338 lang_has_input_file
= FALSE
;
339 parse_args (argc
, argv
);
341 ldemul_set_symbols ();
343 if (link_info
.relocatable
)
345 if (command_line
.gc_sections
)
346 einfo ("%P%F: --gc-sections and -r may not be used together\n");
347 else if (command_line
.relax
)
348 einfo (_("%P%F: --relax and -r may not be used together\n"));
349 if (link_info
.shared
)
350 einfo (_("%P%F: -r and -shared may not be used together\n"));
353 if (! link_info
.shared
)
355 if (command_line
.filter_shlib
)
356 einfo (_("%P%F: -F may not be used without -shared\n"));
357 if (command_line
.auxiliary_filters
)
358 einfo (_("%P%F: -f may not be used without -shared\n"));
361 if (! link_info
.shared
|| link_info
.pie
)
362 link_info
.executable
= TRUE
;
364 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
365 don't see how else this can be handled, since in this case we
366 must preserve all externally visible symbols. */
367 if (link_info
.relocatable
&& link_info
.strip
== strip_all
)
369 link_info
.strip
= strip_debugger
;
370 if (link_info
.discard
== discard_sec_merge
)
371 link_info
.discard
= discard_all
;
374 /* This essentially adds another -L directory so this must be done after
375 the -L's in argv have been processed. */
378 /* If we have not already opened and parsed a linker script
379 read the emulation's appropriate default script. */
380 if (saved_script_handle
== NULL
)
383 char *s
= ldemul_get_script (&isfile
);
386 ldfile_open_command_file (s
);
392 parser_input
= input_script
;
397 if (trace_file_tries
)
399 if (saved_script_handle
)
400 info_msg (_("using external linker script:"));
402 info_msg (_("using internal linker script:"));
403 info_msg ("\n==================================================\n");
405 if (saved_script_handle
)
407 static const int ld_bufsz
= 8193;
409 char *buf
= xmalloc (ld_bufsz
);
411 rewind (saved_script_handle
);
412 while ((n
= fread (buf
, 1, ld_bufsz
- 1, saved_script_handle
)) > 0)
417 rewind (saved_script_handle
);
424 info_msg (ldemul_get_script (&isfile
));
427 info_msg ("\n==================================================\n");
432 if (!lang_has_input_file
)
436 einfo (_("%P%F: no input files\n"));
440 info_msg (_("%P: mode %s\n"), emulation
);
442 ldemul_after_parse ();
444 if (config
.map_filename
)
446 if (strcmp (config
.map_filename
, "-") == 0)
448 config
.map_file
= stdout
;
452 config
.map_file
= fopen (config
.map_filename
, FOPEN_WT
);
453 if (config
.map_file
== (FILE *) NULL
)
455 bfd_set_error (bfd_error_system_call
);
456 einfo (_("%P%F: cannot open map file %s: %E\n"),
457 config
.map_filename
);
464 /* Print error messages for any missing symbols, for any warning
465 symbols, and possibly multiple definitions. */
466 if (link_info
.relocatable
)
467 output_bfd
->flags
&= ~EXEC_P
;
469 output_bfd
->flags
|= EXEC_P
;
473 if (config
.map_file
!= NULL
)
475 if (command_line
.cref
)
476 output_cref (config
.map_file
!= NULL
? config
.map_file
: stdout
);
477 if (nocrossref_list
!= NULL
)
478 check_nocrossrefs ();
480 /* Even if we're producing relocatable output, some non-fatal errors should
481 be reported in the exit status. (What non-fatal errors, if any, do we
482 want to ignore for relocatable output?) */
483 if (!config
.make_executable
&& !force_make_executable
)
486 einfo (_("%P: link errors found, deleting executable `%s'\n"),
489 /* The file will be removed by remove_output. */
494 if (! bfd_close (output_bfd
))
495 einfo (_("%F%B: final close failed: %E\n"), output_bfd
);
497 /* If the --force-exe-suffix is enabled, and we're making an
498 executable file and it doesn't end in .exe, copy it to one
500 if (! link_info
.relocatable
&& command_line
.force_exe_suffix
)
502 int len
= strlen (output_filename
);
505 || (strcasecmp (output_filename
+ len
- 4, ".exe") != 0
506 && strcasecmp (output_filename
+ len
- 4, ".dll") != 0))
510 const int bsize
= 4096;
511 char *buf
= xmalloc (bsize
);
513 char *dst_name
= xmalloc (len
+ 5);
515 strcpy (dst_name
, output_filename
);
516 strcat (dst_name
, ".exe");
517 src
= fopen (output_filename
, FOPEN_RB
);
518 dst
= fopen (dst_name
, FOPEN_WB
);
521 einfo (_("%X%P: unable to open for source of copy `%s'\n"),
524 einfo (_("%X%P: unable to open for destination of copy `%s'\n"),
526 while ((l
= fread (buf
, 1, bsize
, src
)) > 0)
528 int done
= fwrite (buf
, 1, l
, dst
);
531 einfo (_("%P: Error writing file `%s'\n"), dst_name
);
535 if (fclose (dst
) == EOF
)
536 einfo (_("%P: Error closing file `%s'\n"), dst_name
);
543 END_PROGRESS (program_name
);
548 char *lim
= sbrk (0);
550 long run_time
= get_run_time () - start_time
;
552 fprintf (stderr
, _("%s: total time in link: %ld.%06ld\n"),
553 program_name
, run_time
/ 1000000, run_time
% 1000000);
555 fprintf (stderr
, _("%s: data size %ld\n"), program_name
,
556 (long) (lim
- (char *) &environ
));
560 /* Prevent remove_output from doing anything, after a successful link. */
561 output_filename
= NULL
;
567 /* We need to find any explicitly given emulation in order to initialize the
568 state that's needed by the lex&yacc argument parser (parse_args). */
571 get_emulation (int argc
, char **argv
)
576 emulation
= getenv (EMULATION_ENVIRON
);
577 if (emulation
== NULL
)
578 emulation
= DEFAULT_EMULATION
;
580 for (i
= 1; i
< argc
; i
++)
582 if (!strncmp (argv
[i
], "-m", 2))
584 if (argv
[i
][2] == '\0')
589 emulation
= argv
[i
+ 1];
593 einfo (_("%P%F: missing argument to -m\n"));
595 else if (strcmp (argv
[i
], "-mips1") == 0
596 || strcmp (argv
[i
], "-mips2") == 0
597 || strcmp (argv
[i
], "-mips3") == 0
598 || strcmp (argv
[i
], "-mips4") == 0
599 || strcmp (argv
[i
], "-mips5") == 0
600 || strcmp (argv
[i
], "-mips32") == 0
601 || strcmp (argv
[i
], "-mips32r2") == 0
602 || strcmp (argv
[i
], "-mips64") == 0
603 || strcmp (argv
[i
], "-mips64r2") == 0)
605 /* FIXME: The arguments -mips1, -mips2, -mips3, etc. are
606 passed to the linker by some MIPS compilers. They
607 generally tell the linker to use a slightly different
608 library path. Perhaps someday these should be
609 implemented as emulations; until then, we just ignore
610 the arguments and hope that nobody ever creates
611 emulations named ips1, ips2 or ips3. */
613 else if (strcmp (argv
[i
], "-m486") == 0)
615 /* FIXME: The argument -m486 is passed to the linker on
616 some Linux systems. Hope that nobody creates an
617 emulation named 486. */
622 emulation
= &argv
[i
][2];
630 /* If directory DIR contains an "ldscripts" subdirectory,
631 add DIR to the library search path and return TRUE,
632 else return FALSE. */
635 check_for_scripts_dir (char *dir
)
642 dirlen
= strlen (dir
);
643 /* sizeof counts the terminating NUL. */
644 buf
= xmalloc (dirlen
+ sizeof ("/ldscripts"));
645 sprintf (buf
, "%s/ldscripts", dir
);
647 res
= stat (buf
, &s
) == 0 && S_ISDIR (s
.st_mode
);
650 ldfile_add_library_path (dir
, FALSE
);
654 /* Set the default directory for finding script files.
655 Libraries will be searched for here too, but that's ok.
656 We look for the "ldscripts" directory in:
658 SCRIPTDIR (passed from Makefile)
659 (adjusted according to the current location of the binary)
660 SCRIPTDIR (passed from Makefile)
661 the dir where this program is (for using it from the build tree)
662 the dir where this program is/../lib
663 (for installing the tool suite elsewhere). */
666 set_scripts_dir (void)
672 dir
= make_relative_prefix (program_name
, BINDIR
, SCRIPTDIR
);
675 found
= check_for_scripts_dir (dir
);
681 dir
= make_relative_prefix (program_name
, TOOLBINDIR
, SCRIPTDIR
);
684 found
= check_for_scripts_dir (dir
);
690 if (check_for_scripts_dir (SCRIPTDIR
))
691 /* We've been installed normally. */
694 /* Look for "ldscripts" in the dir where our binary is. */
695 end
= strrchr (program_name
, '/');
696 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
698 /* We could have \foo\bar, or /foo\bar. */
699 char *bslash
= strrchr (program_name
, '\\');
701 if (end
== NULL
|| (bslash
!= NULL
&& bslash
> end
))
707 /* Don't look for ldscripts in the current directory. There is
708 too much potential for confusion. */
711 dirlen
= end
- program_name
;
712 /* Make a copy of program_name in dir.
713 Leave room for later "/../lib". */
714 dir
= xmalloc (dirlen
+ 8);
715 strncpy (dir
, program_name
, dirlen
);
718 if (check_for_scripts_dir (dir
))
724 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
725 strcpy (dir
+ dirlen
, "/../lib");
726 check_for_scripts_dir (dir
);
731 add_ysym (const char *name
)
733 if (link_info
.notice_hash
== NULL
)
735 link_info
.notice_hash
= xmalloc (sizeof (struct bfd_hash_table
));
736 if (! bfd_hash_table_init_n (link_info
.notice_hash
,
739 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
742 if (bfd_hash_lookup (link_info
.notice_hash
, name
, TRUE
, TRUE
) == NULL
)
743 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
746 /* Record a symbol to be wrapped, from the --wrap option. */
749 add_wrap (const char *name
)
751 if (link_info
.wrap_hash
== NULL
)
753 link_info
.wrap_hash
= xmalloc (sizeof (struct bfd_hash_table
));
754 if (! bfd_hash_table_init_n (link_info
.wrap_hash
,
757 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
760 if (bfd_hash_lookup (link_info
.wrap_hash
, name
, TRUE
, TRUE
) == NULL
)
761 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
764 /* Handle the -retain-symbols-file option. */
767 add_keepsyms_file (const char *filename
)
774 if (link_info
.strip
== strip_some
)
775 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
777 file
= fopen (filename
, "r");
780 bfd_set_error (bfd_error_system_call
);
781 einfo ("%X%P: %s: %E\n", filename
);
785 link_info
.keep_hash
= xmalloc (sizeof (struct bfd_hash_table
));
786 if (! bfd_hash_table_init (link_info
.keep_hash
, bfd_hash_newfunc
))
787 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
790 buf
= xmalloc (bufsize
);
802 while (! ISSPACE (c
) && c
!= EOF
)
809 buf
= xrealloc (buf
, bufsize
);
816 if (bfd_hash_lookup (link_info
.keep_hash
, buf
, TRUE
, TRUE
) == NULL
)
817 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
821 if (link_info
.strip
!= strip_none
)
822 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
825 link_info
.strip
= strip_some
;
828 /* Callbacks from the BFD linker routines. */
830 /* This is called when BFD has decided to include an archive member in
834 add_archive_element (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
838 lang_input_statement_type
*input
;
840 input
= xmalloc (sizeof (lang_input_statement_type
));
841 input
->filename
= abfd
->filename
;
842 input
->local_sym_name
= abfd
->filename
;
843 input
->the_bfd
= abfd
;
844 input
->asymbols
= NULL
;
846 input
->just_syms_flag
= FALSE
;
847 input
->loaded
= FALSE
;
848 input
->search_dirs_flag
= FALSE
;
850 /* FIXME: The following fields are not set: header.next,
851 header.type, closed, passive_position, symbol_count,
852 next_real_file, is_archive, target, real. This bit of code is
853 from the old decode_library_subfile function. I don't know
854 whether any of those fields matters. */
856 ldlang_add_file (input
);
858 if (config
.map_file
!= NULL
)
860 static bfd_boolean header_printed
;
861 struct bfd_link_hash_entry
*h
;
865 h
= bfd_link_hash_lookup (link_info
.hash
, name
, FALSE
, FALSE
, TRUE
);
877 case bfd_link_hash_defined
:
878 case bfd_link_hash_defweak
:
879 from
= h
->u
.def
.section
->owner
;
882 case bfd_link_hash_undefined
:
883 case bfd_link_hash_undefweak
:
884 from
= h
->u
.undef
.abfd
;
887 case bfd_link_hash_common
:
888 from
= h
->u
.c
.p
->section
->owner
;
893 if (! header_printed
)
897 sprintf (buf
, _("Archive member included because of file (symbol)\n\n"));
899 header_printed
= TRUE
;
902 if (bfd_my_archive (abfd
) == NULL
)
904 minfo ("%s", bfd_get_filename (abfd
));
905 len
= strlen (bfd_get_filename (abfd
));
909 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd
)),
910 bfd_get_filename (abfd
));
911 len
= (strlen (bfd_get_filename (bfd_my_archive (abfd
)))
912 + strlen (bfd_get_filename (abfd
))
930 minfo ("(%T)\n", h
->root
.string
);
932 minfo ("(%s)\n", name
);
935 if (trace_files
|| trace_file_tries
)
936 info_msg ("%I\n", input
);
941 /* This is called when BFD has discovered a symbol which is defined
945 multiple_definition (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
954 /* If either section has the output_section field set to
955 bfd_abs_section_ptr, it means that the section is being
956 discarded, and this is not really a multiple definition at all.
957 FIXME: It would be cleaner to somehow ignore symbols defined in
958 sections which are being discarded. */
959 if ((osec
->output_section
!= NULL
960 && ! bfd_is_abs_section (osec
)
961 && bfd_is_abs_section (osec
->output_section
))
962 || (nsec
->output_section
!= NULL
963 && ! bfd_is_abs_section (nsec
)
964 && bfd_is_abs_section (nsec
->output_section
)))
967 einfo (_("%X%C: multiple definition of `%T'\n"),
968 nbfd
, nsec
, nval
, name
);
970 einfo (_("%D: first defined here\n"), obfd
, osec
, oval
);
972 if (command_line
.relax
)
974 einfo (_("%P: Disabling relaxation: it will not work with multiple definitions\n"));
975 command_line
.relax
= 0;
981 /* This is called when there is a definition of a common symbol, or
982 when a common symbol is found for a symbol that is already defined,
983 or when two common symbols are found. We only do something if
984 -warn-common was used. */
987 multiple_common (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
990 enum bfd_link_hash_type otype
,
993 enum bfd_link_hash_type ntype
,
996 if (! config
.warn_common
)
999 if (ntype
== bfd_link_hash_defined
1000 || ntype
== bfd_link_hash_defweak
1001 || ntype
== bfd_link_hash_indirect
)
1003 ASSERT (otype
== bfd_link_hash_common
);
1004 einfo (_("%B: warning: definition of `%T' overriding common\n"),
1007 einfo (_("%B: warning: common is here\n"), obfd
);
1009 else if (otype
== bfd_link_hash_defined
1010 || otype
== bfd_link_hash_defweak
1011 || otype
== bfd_link_hash_indirect
)
1013 ASSERT (ntype
== bfd_link_hash_common
);
1014 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
1017 einfo (_("%B: warning: defined here\n"), obfd
);
1021 ASSERT (otype
== bfd_link_hash_common
&& ntype
== bfd_link_hash_common
);
1024 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
1027 einfo (_("%B: warning: larger common is here\n"), obfd
);
1029 else if (nsize
> osize
)
1031 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
1034 einfo (_("%B: warning: smaller common is here\n"), obfd
);
1038 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd
, name
);
1040 einfo (_("%B: warning: previous common is here\n"), obfd
);
1047 /* This is called when BFD has discovered a set element. H is the
1048 entry in the linker hash table for the set. SECTION and VALUE
1049 represent a value which should be added to the set. */
1052 add_to_set (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1053 struct bfd_link_hash_entry
*h
,
1054 bfd_reloc_code_real_type reloc
,
1059 if (config
.warn_constructors
)
1060 einfo (_("%P: warning: global constructor %s used\n"),
1063 if (! config
.build_constructors
)
1066 ldctor_add_set_entry (h
, reloc
, NULL
, section
, value
);
1068 if (h
->type
== bfd_link_hash_new
)
1070 h
->type
= bfd_link_hash_undefined
;
1071 h
->u
.undef
.abfd
= abfd
;
1072 /* We don't call bfd_link_add_undef to add this to the list of
1073 undefined symbols because we are going to define it
1080 /* This is called when BFD has discovered a constructor. This is only
1081 called for some object file formats--those which do not handle
1082 constructors in some more clever fashion. This is similar to
1083 adding an element to a set, but less general. */
1086 constructor_callback (struct bfd_link_info
*info
,
1087 bfd_boolean constructor
,
1094 struct bfd_link_hash_entry
*h
;
1095 char set_name
[1 + sizeof "__CTOR_LIST__"];
1097 if (config
.warn_constructors
)
1098 einfo (_("%P: warning: global constructor %s used\n"), name
);
1100 if (! config
.build_constructors
)
1103 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
1104 useful error message. */
1105 if (bfd_reloc_type_lookup (output_bfd
, BFD_RELOC_CTOR
) == NULL
1106 && (link_info
.relocatable
1107 || bfd_reloc_type_lookup (abfd
, BFD_RELOC_CTOR
) == NULL
))
1108 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
1111 if (bfd_get_symbol_leading_char (abfd
) != '\0')
1112 *s
++ = bfd_get_symbol_leading_char (abfd
);
1114 strcpy (s
, "__CTOR_LIST__");
1116 strcpy (s
, "__DTOR_LIST__");
1118 h
= bfd_link_hash_lookup (info
->hash
, set_name
, TRUE
, TRUE
, TRUE
);
1119 if (h
== (struct bfd_link_hash_entry
*) NULL
)
1120 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1121 if (h
->type
== bfd_link_hash_new
)
1123 h
->type
= bfd_link_hash_undefined
;
1124 h
->u
.undef
.abfd
= abfd
;
1125 /* We don't call bfd_link_add_undef to add this to the list of
1126 undefined symbols because we are going to define it
1130 ldctor_add_set_entry (h
, BFD_RELOC_CTOR
, name
, section
, value
);
1134 /* A structure used by warning_callback to pass information through
1135 bfd_map_over_sections. */
1137 struct warning_callback_info
1140 const char *warning
;
1145 /* This is called when there is a reference to a warning symbol. */
1148 warning_callback (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1149 const char *warning
,
1155 /* This is a hack to support warn_multiple_gp. FIXME: This should
1156 have a cleaner interface, but what? */
1157 if (! config
.warn_multiple_gp
1158 && strcmp (warning
, "using multiple gp values") == 0)
1161 if (section
!= NULL
)
1162 einfo ("%C: %s\n", abfd
, section
, address
, warning
);
1163 else if (abfd
== NULL
)
1164 einfo ("%P: %s\n", warning
);
1165 else if (symbol
== NULL
)
1166 einfo ("%B: %s\n", abfd
, warning
);
1169 lang_input_statement_type
*entry
;
1171 struct warning_callback_info info
;
1173 /* Look through the relocs to see if we can find a plausible
1175 entry
= (lang_input_statement_type
*) abfd
->usrdata
;
1176 if (entry
!= NULL
&& entry
->asymbols
!= NULL
)
1177 asymbols
= entry
->asymbols
;
1183 symsize
= bfd_get_symtab_upper_bound (abfd
);
1185 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1186 asymbols
= xmalloc (symsize
);
1187 symbol_count
= bfd_canonicalize_symtab (abfd
, asymbols
);
1188 if (symbol_count
< 0)
1189 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1192 entry
->asymbols
= asymbols
;
1193 entry
->symbol_count
= symbol_count
;
1198 info
.warning
= warning
;
1199 info
.symbol
= symbol
;
1200 info
.asymbols
= asymbols
;
1201 bfd_map_over_sections (abfd
, warning_find_reloc
, &info
);
1204 einfo ("%B: %s\n", abfd
, warning
);
1213 /* This is called by warning_callback for each section. It checks the
1214 relocs of the section to see if it can find a reference to the
1215 symbol which triggered the warning. If it can, it uses the reloc
1216 to give an error message with a file and line number. */
1219 warning_find_reloc (bfd
*abfd
, asection
*sec
, void *iarg
)
1221 struct warning_callback_info
*info
= iarg
;
1225 arelent
**p
, **pend
;
1230 relsize
= bfd_get_reloc_upper_bound (abfd
, sec
);
1232 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1236 relpp
= xmalloc (relsize
);
1237 relcount
= bfd_canonicalize_reloc (abfd
, sec
, relpp
, info
->asymbols
);
1239 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1242 pend
= p
+ relcount
;
1243 for (; p
< pend
&& *p
!= NULL
; p
++)
1247 if (q
->sym_ptr_ptr
!= NULL
1248 && *q
->sym_ptr_ptr
!= NULL
1249 && strcmp (bfd_asymbol_name (*q
->sym_ptr_ptr
), info
->symbol
) == 0)
1251 /* We found a reloc for the symbol we are looking for. */
1252 einfo ("%C: %s\n", abfd
, sec
, q
->address
, info
->warning
);
1261 /* This is called when an undefined symbol is found. */
1264 undefined_symbol (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1271 static char *error_name
;
1272 static unsigned int error_count
;
1274 #define MAX_ERRORS_IN_A_ROW 5
1276 if (config
.warn_once
)
1278 static struct bfd_hash_table
*hash
;
1280 /* Only warn once about a particular undefined symbol. */
1283 hash
= xmalloc (sizeof (struct bfd_hash_table
));
1284 if (! bfd_hash_table_init (hash
, bfd_hash_newfunc
))
1285 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1288 if (bfd_hash_lookup (hash
, name
, FALSE
, FALSE
) != NULL
)
1291 if (bfd_hash_lookup (hash
, name
, TRUE
, TRUE
) == NULL
)
1292 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1295 /* We never print more than a reasonable number of errors in a row
1296 for a single symbol. */
1297 if (error_name
!= NULL
1298 && strcmp (name
, error_name
) == 0)
1303 if (error_name
!= NULL
)
1305 error_name
= xstrdup (name
);
1308 if (section
!= NULL
)
1310 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1313 einfo (_("%X%C: undefined reference to `%T'\n"),
1314 abfd
, section
, address
, name
);
1316 einfo (_("%C: warning: undefined reference to `%T'\n"),
1317 abfd
, section
, address
, name
);
1319 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1322 einfo (_("%X%D: more undefined references to `%T' follow\n"),
1323 abfd
, section
, address
, name
);
1325 einfo (_("%D: warning: more undefined references to `%T' follow\n"),
1326 abfd
, section
, address
, name
);
1333 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1336 einfo (_("%X%B: undefined reference to `%T'\n"),
1339 einfo (_("%B: warning: undefined reference to `%T'\n"),
1342 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1345 einfo (_("%X%B: more undefined references to `%T' follow\n"),
1348 einfo (_("%B: warning: more undefined references to `%T' follow\n"),
1358 /* Counter to limit the number of relocation overflow error messages
1359 to print. Errors are printed as it is decremented. When it's
1360 called and the counter is zero, a final message is printed
1361 indicating more relocations were omitted. When it gets to -1, no
1362 such errors are printed. If it's initially set to a value less
1363 than -1, all such errors will be printed (--verbose does this). */
1365 int overflow_cutoff_limit
= 10;
1367 /* This is called when a reloc overflows. */
1370 reloc_overflow (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1372 const char *reloc_name
,
1378 if (overflow_cutoff_limit
== -1)
1382 einfo (_("%P%X: generated"));
1384 einfo ("%X%C:", abfd
, section
, address
);
1386 if (overflow_cutoff_limit
>= 0
1387 && overflow_cutoff_limit
-- == 0)
1389 einfo (_(" additional relocation overflows omitted from the output\n"));
1393 einfo (_(" relocation truncated to fit: %s %T"), reloc_name
, name
);
1395 einfo ("+%v", addend
);
1400 /* This is called when a dangerous relocation is made. */
1403 reloc_dangerous (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1404 const char *message
,
1410 einfo (_("%P%X: generated"));
1412 einfo ("%X%C:", abfd
, section
, address
);
1413 einfo (_("dangerous relocation: %s\n"), message
);
1417 /* This is called when a reloc is being generated attached to a symbol
1418 that is not being output. */
1421 unattached_reloc (struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1428 einfo (_("%P%X: generated"));
1430 einfo ("%X%C:", abfd
, section
, address
);
1431 einfo (_(" reloc refers to symbol `%T' which is not being output\n"), name
);
1435 /* This is called if link_info.notice_all is set, or when a symbol in
1436 link_info.notice_hash is found. Symbols are put in notice_hash
1437 using the -y option. */
1440 notice (struct bfd_link_info
*info
,
1446 if (! info
->notice_all
1447 || (info
->notice_hash
!= NULL
1448 && bfd_hash_lookup (info
->notice_hash
, name
, FALSE
, FALSE
) != NULL
))
1450 if (bfd_is_und_section (section
))
1451 einfo ("%B: reference to %s\n", abfd
, name
);
1453 einfo ("%B: definition of %s\n", abfd
, name
);
1456 if (command_line
.cref
|| nocrossref_list
!= NULL
)
1457 add_cref (name
, abfd
, section
, value
);