1 /* Main program of GNU linker.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
4 Written by Steve Chamberlain steve@cygnus.com
6 This file is part of GLD, the Gnu Linker.
8 GLD is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GLD is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GLD; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
27 #include "libiberty.h"
30 #include "filenames.h"
44 /* Somewhere above, sys/stat.h got included . . . . */
45 #if !defined(S_ISDIR) && defined(S_IFDIR)
46 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
52 #ifdef NEED_DECLARATION_SBRK
57 static char *get_emulation
PARAMS ((int, char **));
58 static void set_scripts_dir
PARAMS ((void));
63 const char *output_filename
= "a.out";
65 /* Name this program was invoked by. */
68 /* The file that we're creating. */
71 /* Set by -G argument, for MIPS ECOFF target. */
72 int g_switch_value
= 8;
74 /* Nonzero means print names of input files as processed. */
77 /* Nonzero means same, but note open failures, too. */
78 boolean trace_file_tries
;
80 /* Nonzero means version number was printed, so exit successfully
81 instead of complaining if no input files are given. */
82 boolean version_printed
;
84 /* Nonzero means link in every member of an archive. */
85 boolean whole_archive
;
87 /* True if we should demangle symbol names. */
90 args_type command_line
;
92 ld_config_type config
;
94 static void remove_output
PARAMS ((void));
95 static boolean check_for_scripts_dir
PARAMS ((char *dir
));
96 static boolean add_archive_element
PARAMS ((struct bfd_link_info
*, bfd
*,
98 static boolean multiple_definition
PARAMS ((struct bfd_link_info
*,
100 bfd
*, asection
*, bfd_vma
,
101 bfd
*, asection
*, bfd_vma
));
102 static boolean multiple_common
PARAMS ((struct bfd_link_info
*,
104 enum bfd_link_hash_type
, bfd_vma
,
105 bfd
*, enum bfd_link_hash_type
,
107 static boolean add_to_set
PARAMS ((struct bfd_link_info
*,
108 struct bfd_link_hash_entry
*,
109 bfd_reloc_code_real_type
,
110 bfd
*, asection
*, bfd_vma
));
111 static boolean constructor_callback
PARAMS ((struct bfd_link_info
*,
114 bfd
*, asection
*, bfd_vma
));
115 static boolean warning_callback
PARAMS ((struct bfd_link_info
*,
116 const char *, const char *, bfd
*,
117 asection
*, bfd_vma
));
118 static void warning_find_reloc
PARAMS ((bfd
*, asection
*, PTR
));
119 static boolean undefined_symbol
PARAMS ((struct bfd_link_info
*,
121 asection
*, bfd_vma
, boolean
));
122 static boolean reloc_overflow
PARAMS ((struct bfd_link_info
*, const char *,
123 const char *, bfd_vma
,
124 bfd
*, asection
*, bfd_vma
));
125 static boolean reloc_dangerous
PARAMS ((struct bfd_link_info
*, const char *,
126 bfd
*, asection
*, bfd_vma
));
127 static boolean unattached_reloc
PARAMS ((struct bfd_link_info
*,
128 const char *, bfd
*, asection
*,
130 static boolean notice
PARAMS ((struct bfd_link_info
*, const char *,
131 bfd
*, asection
*, bfd_vma
));
133 static struct bfd_link_callbacks link_callbacks
= {
138 constructor_callback
,
147 struct bfd_link_info link_info
;
154 if (output_bfd
&& output_bfd
->iostream
)
155 fclose ((FILE *) (output_bfd
->iostream
));
156 if (delete_output_file_on_failure
)
157 unlink (output_filename
);
167 long start_time
= get_run_time ();
169 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
170 setlocale (LC_MESSAGES
, "");
172 bindtextdomain (PACKAGE
, LOCALEDIR
);
173 textdomain (PACKAGE
);
175 program_name
= argv
[0];
176 xmalloc_set_program_name (program_name
);
178 START_PROGRESS (program_name
, 0);
182 bfd_set_error_program_name (program_name
);
184 xatexit (remove_output
);
186 /* Set the default BFD target based on the configured target. Doing
187 this permits the linker to be configured for a particular target,
188 and linked against a shared BFD library which was configured for
189 a different target. The macro TARGET is defined by Makefile. */
190 if (! bfd_set_default_target (TARGET
))
192 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET
);
196 /* Initialize the data about options. */
197 trace_files
= trace_file_tries
= version_printed
= false;
198 whole_archive
= false;
199 config
.build_constructors
= true;
200 config
.dynamic_link
= false;
201 config
.has_shared
= false;
202 config
.split_by_reloc
= (unsigned) -1;
203 config
.split_by_file
= (bfd_size_type
) -1;
204 command_line
.force_common_definition
= false;
205 command_line
.interpreter
= NULL
;
206 command_line
.rpath
= NULL
;
207 command_line
.warn_mismatch
= true;
208 command_line
.check_section_addresses
= true;
210 /* We initialize DEMANGLING based on the environment variable
211 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
212 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
213 environment. Acting the same way here lets us provide the same
214 interface by default. */
215 demangling
= getenv ("COLLECT_NO_DEMANGLE") == NULL
;
217 link_info
.callbacks
= &link_callbacks
;
218 link_info
.relocateable
= false;
219 link_info
.emitrelocations
= false;
220 link_info
.shared
= false;
221 link_info
.symbolic
= false;
222 link_info
.export_dynamic
= false;
223 link_info
.static_link
= false;
224 link_info
.traditional_format
= false;
225 link_info
.optimize
= false;
226 link_info
.no_undefined
= false;
227 link_info
.allow_shlib_undefined
= false;
228 link_info
.strip
= strip_none
;
229 link_info
.discard
= discard_sec_merge
;
230 link_info
.keep_memory
= true;
231 link_info
.input_bfds
= NULL
;
232 link_info
.create_object_symbols_section
= NULL
;
233 link_info
.hash
= NULL
;
234 link_info
.keep_hash
= NULL
;
235 link_info
.notice_all
= false;
236 link_info
.notice_hash
= NULL
;
237 link_info
.wrap_hash
= NULL
;
238 link_info
.mpc860c0
= 0;
239 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
240 and _fini symbols. We are compatible. */
241 link_info
.init_function
= "_init";
242 link_info
.fini_function
= "_fini";
243 link_info
.new_dtags
= false;
244 link_info
.flags
= (bfd_vma
) 0;
245 link_info
.flags_1
= (bfd_vma
) 0;
247 ldfile_add_arch ("");
249 config
.make_executable
= true;
250 force_make_executable
= false;
251 config
.magic_demand_paged
= true;
252 config
.text_read_only
= true;
254 emulation
= get_emulation (argc
, argv
);
255 ldemul_choose_mode (emulation
);
256 default_target
= ldemul_choose_target ();
258 ldemul_before_parse ();
259 lang_has_input_file
= false;
260 parse_args (argc
, argv
);
262 ldemul_set_symbols ();
264 if (link_info
.relocateable
)
266 if (command_line
.gc_sections
)
267 einfo ("%P%F: --gc-sections and -r may not be used together\n");
268 if (link_info
.mpc860c0
)
269 einfo (_("%P%F: -r and --mpc860c0 may not be used together\n"));
270 else if (command_line
.relax
)
271 einfo (_("%P%F: --relax and -r may not be used together\n"));
272 if (link_info
.shared
)
273 einfo (_("%P%F: -r and -shared may not be used together\n"));
276 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
277 don't see how else this can be handled, since in this case we
278 must preserve all externally visible symbols. */
279 if (link_info
.relocateable
&& link_info
.strip
== strip_all
)
281 link_info
.strip
= strip_debugger
;
282 if (link_info
.discard
== discard_sec_merge
)
283 link_info
.discard
= discard_all
;
286 /* This essentially adds another -L directory so this must be done after
287 the -L's in argv have been processed. */
290 if (had_script
== false)
292 /* Read the emulation's appropriate default script. */
294 char *s
= ldemul_get_script (&isfile
);
297 ldfile_open_command_file (s
);
300 if (trace_file_tries
)
302 info_msg (_("using internal linker script:\n"));
303 info_msg ("==================================================\n");
305 info_msg ("\n==================================================\n");
310 parser_input
= input_script
;
317 if (lang_has_input_file
== false)
321 einfo (_("%P%F: no input files\n"));
326 info_msg (_("%P: mode %s\n"), emulation
);
329 ldemul_after_parse ();
331 if (config
.map_filename
)
333 if (strcmp (config
.map_filename
, "-") == 0)
335 config
.map_file
= stdout
;
339 config
.map_file
= fopen (config
.map_filename
, FOPEN_WT
);
340 if (config
.map_file
== (FILE *) NULL
)
342 bfd_set_error (bfd_error_system_call
);
343 einfo (_("%P%F: cannot open map file %s: %E\n"),
344 config
.map_filename
);
351 /* Print error messages for any missing symbols, for any warning
352 symbols, and possibly multiple definitions. */
354 if (! link_info
.relocateable
)
356 /* Look for a text section and switch the readonly attribute in it. */
357 asection
*found
= bfd_get_section_by_name (output_bfd
, ".text");
359 if (found
!= (asection
*) NULL
)
361 if (config
.text_read_only
)
362 found
->flags
|= SEC_READONLY
;
364 found
->flags
&= ~SEC_READONLY
;
368 if (link_info
.relocateable
)
369 output_bfd
->flags
&= ~EXEC_P
;
371 output_bfd
->flags
|= EXEC_P
;
375 if (config
.map_file
!= NULL
)
377 if (command_line
.cref
)
378 output_cref (config
.map_file
!= NULL
? config
.map_file
: stdout
);
379 if (nocrossref_list
!= NULL
)
380 check_nocrossrefs ();
382 /* Even if we're producing relocateable output, some non-fatal errors should
383 be reported in the exit status. (What non-fatal errors, if any, do we
384 want to ignore for relocateable output?) */
386 if (config
.make_executable
== false && force_make_executable
== false)
388 if (trace_files
== true)
390 einfo (_("%P: link errors found, deleting executable `%s'\n"),
394 /* The file will be removed by remove_output. */
400 if (! bfd_close (output_bfd
))
401 einfo (_("%F%B: final close failed: %E\n"), output_bfd
);
403 /* If the --force-exe-suffix is enabled, and we're making an
404 executable file and it doesn't end in .exe, copy it to one
406 if (! link_info
.relocateable
&& command_line
.force_exe_suffix
)
408 int len
= strlen (output_filename
);
410 || (strcasecmp (output_filename
+ len
- 4, ".exe") != 0
411 && strcasecmp (output_filename
+ len
- 4, ".dll") != 0))
415 const int bsize
= 4096;
416 char *buf
= xmalloc (bsize
);
418 char *dst_name
= xmalloc (len
+ 5);
419 strcpy (dst_name
, output_filename
);
420 strcat (dst_name
, ".exe");
421 src
= fopen (output_filename
, FOPEN_RB
);
422 dst
= fopen (dst_name
, FOPEN_WB
);
425 einfo (_("%X%P: unable to open for source of copy `%s'\n"), output_filename
);
427 einfo (_("%X%P: unable to open for destination of copy `%s'\n"), dst_name
);
428 while ((l
= fread (buf
, 1, bsize
, src
)) > 0)
430 int done
= fwrite (buf
, 1, l
, dst
);
433 einfo (_("%P: Error writing file `%s'\n"), dst_name
);
437 if (fclose (dst
) == EOF
)
439 einfo (_("%P: Error closing file `%s'\n"), dst_name
);
447 END_PROGRESS (program_name
);
452 char *lim
= (char *) sbrk (0);
454 long run_time
= get_run_time () - start_time
;
456 fprintf (stderr
, _("%s: total time in link: %ld.%06ld\n"),
457 program_name
, run_time
/ 1000000, run_time
% 1000000);
459 fprintf (stderr
, _("%s: data size %ld\n"), program_name
,
460 (long) (lim
- (char *) &environ
));
464 /* Prevent remove_output from doing anything, after a successful link. */
465 output_filename
= NULL
;
471 /* We need to find any explicitly given emulation in order to initialize the
472 state that's needed by the lex&yacc argument parser (parse_args). */
475 get_emulation (argc
, argv
)
482 emulation
= getenv (EMULATION_ENVIRON
);
483 if (emulation
== NULL
)
484 emulation
= DEFAULT_EMULATION
;
486 for (i
= 1; i
< argc
; i
++)
488 if (!strncmp (argv
[i
], "-m", 2))
490 if (argv
[i
][2] == '\0')
495 emulation
= argv
[i
+ 1];
500 einfo (_("%P%F: missing argument to -m\n"));
503 else if (strcmp (argv
[i
], "-mips1") == 0
504 || strcmp (argv
[i
], "-mips2") == 0
505 || strcmp (argv
[i
], "-mips3") == 0
506 || strcmp (argv
[i
], "-mips4") == 0
507 || strcmp (argv
[i
], "-mips5") == 0)
509 /* FIXME: The arguments -mips1, -mips2 and -mips3 are
510 passed to the linker by some MIPS compilers. They
511 generally tell the linker to use a slightly different
512 library path. Perhaps someday these should be
513 implemented as emulations; until then, we just ignore
514 the arguments and hope that nobody ever creates
515 emulations named ips1, ips2 or ips3. */
517 else if (strcmp (argv
[i
], "-m486") == 0)
519 /* FIXME: The argument -m486 is passed to the linker on
520 some Linux systems. Hope that nobody creates an
521 emulation named 486. */
526 emulation
= &argv
[i
][2];
534 /* If directory DIR contains an "ldscripts" subdirectory,
535 add DIR to the library search path and return true,
536 else return false. */
539 check_for_scripts_dir (dir
)
547 dirlen
= strlen (dir
);
548 /* sizeof counts the terminating NUL. */
549 buf
= (char *) xmalloc (dirlen
+ sizeof ("/ldscripts"));
550 sprintf (buf
, "%s/ldscripts", dir
);
552 res
= stat (buf
, &s
) == 0 && S_ISDIR (s
.st_mode
);
555 ldfile_add_library_path (dir
, false);
559 /* Set the default directory for finding script files.
560 Libraries will be searched for here too, but that's ok.
561 We look for the "ldscripts" directory in:
563 SCRIPTDIR (passed from Makefile)
564 the dir where this program is (for using it from the build tree)
565 the dir where this program is/../lib (for installing the tool suite elsewhere) */
573 if (check_for_scripts_dir (SCRIPTDIR
))
574 /* We've been installed normally. */
577 /* Look for "ldscripts" in the dir where our binary is. */
578 end
= strrchr (program_name
, '/');
579 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
581 /* We could have \foo\bar, or /foo\bar. */
582 char *bslash
= strrchr (program_name
, '\\');
583 if (end
== NULL
|| (bslash
!= NULL
&& bslash
> end
))
590 /* Don't look for ldscripts in the current directory. There is
591 too much potential for confusion. */
595 dirlen
= end
- program_name
;
596 /* Make a copy of program_name in dir.
597 Leave room for later "/../lib". */
598 dir
= (char *) xmalloc (dirlen
+ 8);
599 strncpy (dir
, program_name
, dirlen
);
602 if (check_for_scripts_dir (dir
))
603 /* Don't free dir. */
606 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
607 strcpy (dir
+ dirlen
, "/../lib");
608 if (check_for_scripts_dir (dir
))
611 /* Well, we tried. */
619 if (link_info
.notice_hash
== (struct bfd_hash_table
*) NULL
)
621 link_info
.notice_hash
= ((struct bfd_hash_table
*)
622 xmalloc (sizeof (struct bfd_hash_table
)));
623 if (! bfd_hash_table_init_n (link_info
.notice_hash
,
626 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
629 if (bfd_hash_lookup (link_info
.notice_hash
, name
, true, true)
630 == (struct bfd_hash_entry
*) NULL
)
631 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
634 /* Record a symbol to be wrapped, from the --wrap option. */
640 if (link_info
.wrap_hash
== NULL
)
642 link_info
.wrap_hash
= ((struct bfd_hash_table
*)
643 xmalloc (sizeof (struct bfd_hash_table
)));
644 if (! bfd_hash_table_init_n (link_info
.wrap_hash
,
647 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
649 if (bfd_hash_lookup (link_info
.wrap_hash
, name
, true, true) == NULL
)
650 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
653 /* Handle the -retain-symbols-file option. */
656 add_keepsyms_file (filename
)
657 const char *filename
;
664 if (link_info
.strip
== strip_some
)
665 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
667 file
= fopen (filename
, "r");
668 if (file
== (FILE *) NULL
)
670 bfd_set_error (bfd_error_system_call
);
671 einfo ("%X%P: %s: %E\n", filename
);
675 link_info
.keep_hash
= ((struct bfd_hash_table
*)
676 xmalloc (sizeof (struct bfd_hash_table
)));
677 if (! bfd_hash_table_init (link_info
.keep_hash
, bfd_hash_newfunc
))
678 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
681 buf
= (char *) xmalloc (bufsize
);
693 while (! isspace (c
) && c
!= EOF
)
700 buf
= xrealloc (buf
, bufsize
);
707 if (bfd_hash_lookup (link_info
.keep_hash
, buf
, true, true)
708 == (struct bfd_hash_entry
*) NULL
)
709 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
713 if (link_info
.strip
!= strip_none
)
714 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
716 link_info
.strip
= strip_some
;
719 /* Callbacks from the BFD linker routines. */
721 /* This is called when BFD has decided to include an archive member in
725 add_archive_element (info
, abfd
, name
)
726 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
730 lang_input_statement_type
*input
;
732 input
= ((lang_input_statement_type
*)
733 xmalloc (sizeof (lang_input_statement_type
)));
734 input
->filename
= abfd
->filename
;
735 input
->local_sym_name
= abfd
->filename
;
736 input
->the_bfd
= abfd
;
737 input
->asymbols
= NULL
;
739 input
->just_syms_flag
= false;
740 input
->loaded
= false;
741 input
->search_dirs_flag
= false;
743 /* FIXME: The following fields are not set: header.next,
744 header.type, closed, passive_position, symbol_count,
745 next_real_file, is_archive, target, real. This bit of code is
746 from the old decode_library_subfile function. I don't know
747 whether any of those fields matters. */
749 ldlang_add_file (input
);
751 if (config
.map_file
!= (FILE *) NULL
)
753 static boolean header_printed
;
754 struct bfd_link_hash_entry
*h
;
758 h
= bfd_link_hash_lookup (link_info
.hash
, name
, false, false, true);
770 case bfd_link_hash_defined
:
771 case bfd_link_hash_defweak
:
772 from
= h
->u
.def
.section
->owner
;
775 case bfd_link_hash_undefined
:
776 case bfd_link_hash_undefweak
:
777 from
= h
->u
.undef
.abfd
;
780 case bfd_link_hash_common
:
781 from
= h
->u
.c
.p
->section
->owner
;
786 if (! header_printed
)
790 sprintf (buf
, "%-29s %s\n\n", _("Archive member included"),
791 _("because of file (symbol)"));
793 header_printed
= true;
796 if (bfd_my_archive (abfd
) == NULL
)
798 minfo ("%s", bfd_get_filename (abfd
));
799 len
= strlen (bfd_get_filename (abfd
));
803 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd
)),
804 bfd_get_filename (abfd
));
805 len
= (strlen (bfd_get_filename (bfd_my_archive (abfd
)))
806 + strlen (bfd_get_filename (abfd
))
824 minfo ("(%T)\n", h
->root
.string
);
826 minfo ("(%s)\n", name
);
829 if (trace_files
|| trace_file_tries
)
830 info_msg ("%I\n", input
);
835 /* This is called when BFD has discovered a symbol which is defined
839 multiple_definition (info
, name
, obfd
, osec
, oval
, nbfd
, nsec
, nval
)
840 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
849 /* If either section has the output_section field set to
850 bfd_abs_section_ptr, it means that the section is being
851 discarded, and this is not really a multiple definition at all.
852 FIXME: It would be cleaner to somehow ignore symbols defined in
853 sections which are being discarded. */
854 if ((osec
->output_section
!= NULL
855 && ! bfd_is_abs_section (osec
)
856 && bfd_is_abs_section (osec
->output_section
))
857 || (nsec
->output_section
!= NULL
858 && ! bfd_is_abs_section (nsec
)
859 && bfd_is_abs_section (nsec
->output_section
)))
862 einfo (_("%X%C: multiple definition of `%T'\n"),
863 nbfd
, nsec
, nval
, name
);
864 if (obfd
!= (bfd
*) NULL
)
865 einfo (_("%D: first defined here\n"), obfd
, osec
, oval
);
867 if (command_line
.relax
)
869 einfo (_("%P: Disabling relaxation: it will not work with multiple definitions\n"));
870 command_line
.relax
= 0;
876 /* This is called when there is a definition of a common symbol, or
877 when a common symbol is found for a symbol that is already defined,
878 or when two common symbols are found. We only do something if
879 -warn-common was used. */
882 multiple_common (info
, name
, obfd
, otype
, osize
, nbfd
, ntype
, nsize
)
883 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
886 enum bfd_link_hash_type otype
;
889 enum bfd_link_hash_type ntype
;
892 if (! config
.warn_common
)
895 if (ntype
== bfd_link_hash_defined
896 || ntype
== bfd_link_hash_defweak
897 || ntype
== bfd_link_hash_indirect
)
899 ASSERT (otype
== bfd_link_hash_common
);
900 einfo (_("%B: warning: definition of `%T' overriding common\n"),
903 einfo (_("%B: warning: common is here\n"), obfd
);
905 else if (otype
== bfd_link_hash_defined
906 || otype
== bfd_link_hash_defweak
907 || otype
== bfd_link_hash_indirect
)
909 ASSERT (ntype
== bfd_link_hash_common
);
910 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
913 einfo (_("%B: warning: defined here\n"), obfd
);
917 ASSERT (otype
== bfd_link_hash_common
&& ntype
== bfd_link_hash_common
);
920 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
923 einfo (_("%B: warning: larger common is here\n"), obfd
);
925 else if (nsize
> osize
)
927 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
930 einfo (_("%B: warning: smaller common is here\n"), obfd
);
934 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd
, name
);
936 einfo (_("%B: warning: previous common is here\n"), obfd
);
943 /* This is called when BFD has discovered a set element. H is the
944 entry in the linker hash table for the set. SECTION and VALUE
945 represent a value which should be added to the set. */
948 add_to_set (info
, h
, reloc
, abfd
, section
, value
)
949 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
950 struct bfd_link_hash_entry
*h
;
951 bfd_reloc_code_real_type reloc
;
956 if (config
.warn_constructors
)
957 einfo (_("%P: warning: global constructor %s used\n"),
960 if (! config
.build_constructors
)
963 ldctor_add_set_entry (h
, reloc
, (const char *) NULL
, section
, value
);
965 if (h
->type
== bfd_link_hash_new
)
967 h
->type
= bfd_link_hash_undefined
;
968 h
->u
.undef
.abfd
= abfd
;
969 /* We don't call bfd_link_add_undef to add this to the list of
970 undefined symbols because we are going to define it
977 /* This is called when BFD has discovered a constructor. This is only
978 called for some object file formats--those which do not handle
979 constructors in some more clever fashion. This is similar to
980 adding an element to a set, but less general. */
983 constructor_callback (info
, constructor
, name
, abfd
, section
, value
)
984 struct bfd_link_info
*info
;
992 struct bfd_link_hash_entry
*h
;
993 char set_name
[1 + sizeof "__CTOR_LIST__"];
995 if (config
.warn_constructors
)
996 einfo (_("%P: warning: global constructor %s used\n"), name
);
998 if (! config
.build_constructors
)
1001 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
1002 useful error message. */
1003 if (bfd_reloc_type_lookup (output_bfd
, BFD_RELOC_CTOR
) == NULL
1004 && (link_info
.relocateable
1005 || bfd_reloc_type_lookup (abfd
, BFD_RELOC_CTOR
) == NULL
))
1006 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
1009 if (bfd_get_symbol_leading_char (abfd
) != '\0')
1010 *s
++ = bfd_get_symbol_leading_char (abfd
);
1012 strcpy (s
, "__CTOR_LIST__");
1014 strcpy (s
, "__DTOR_LIST__");
1016 h
= bfd_link_hash_lookup (info
->hash
, set_name
, true, true, true);
1017 if (h
== (struct bfd_link_hash_entry
*) NULL
)
1018 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1019 if (h
->type
== bfd_link_hash_new
)
1021 h
->type
= bfd_link_hash_undefined
;
1022 h
->u
.undef
.abfd
= abfd
;
1023 /* We don't call bfd_link_add_undef to add this to the list of
1024 undefined symbols because we are going to define it
1028 ldctor_add_set_entry (h
, BFD_RELOC_CTOR
, name
, section
, value
);
1032 /* A structure used by warning_callback to pass information through
1033 bfd_map_over_sections. */
1035 struct warning_callback_info
{
1037 const char *warning
;
1042 /* This is called when there is a reference to a warning symbol. */
1045 warning_callback (info
, warning
, symbol
, abfd
, section
, address
)
1046 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1047 const char *warning
;
1053 /* This is a hack to support warn_multiple_gp. FIXME: This should
1054 have a cleaner interface, but what? */
1055 if (! config
.warn_multiple_gp
1056 && strcmp (warning
, "using multiple gp values") == 0)
1059 if (section
!= NULL
)
1060 einfo ("%C: %s\n", abfd
, section
, address
, warning
);
1061 else if (abfd
== NULL
)
1062 einfo ("%P: %s\n", warning
);
1063 else if (symbol
== NULL
)
1064 einfo ("%B: %s\n", abfd
, warning
);
1067 lang_input_statement_type
*entry
;
1069 struct warning_callback_info info
;
1071 /* Look through the relocs to see if we can find a plausible
1074 entry
= (lang_input_statement_type
*) abfd
->usrdata
;
1075 if (entry
!= NULL
&& entry
->asymbols
!= NULL
)
1076 asymbols
= entry
->asymbols
;
1082 symsize
= bfd_get_symtab_upper_bound (abfd
);
1084 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1085 asymbols
= (asymbol
**) xmalloc (symsize
);
1086 symbol_count
= bfd_canonicalize_symtab (abfd
, asymbols
);
1087 if (symbol_count
< 0)
1088 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1091 entry
->asymbols
= asymbols
;
1092 entry
->symbol_count
= symbol_count
;
1097 info
.warning
= warning
;
1098 info
.symbol
= symbol
;
1099 info
.asymbols
= asymbols
;
1100 bfd_map_over_sections (abfd
, warning_find_reloc
, (PTR
) &info
);
1103 einfo ("%B: %s\n", abfd
, warning
);
1112 /* This is called by warning_callback for each section. It checks the
1113 relocs of the section to see if it can find a reference to the
1114 symbol which triggered the warning. If it can, it uses the reloc
1115 to give an error message with a file and line number. */
1118 warning_find_reloc (abfd
, sec
, iarg
)
1123 struct warning_callback_info
*info
= (struct warning_callback_info
*) iarg
;
1127 arelent
**p
, **pend
;
1132 relsize
= bfd_get_reloc_upper_bound (abfd
, sec
);
1134 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1138 relpp
= (arelent
**) xmalloc (relsize
);
1139 relcount
= bfd_canonicalize_reloc (abfd
, sec
, relpp
, info
->asymbols
);
1141 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1144 pend
= p
+ relcount
;
1145 for (; p
< pend
&& *p
!= NULL
; p
++)
1149 if (q
->sym_ptr_ptr
!= NULL
1150 && *q
->sym_ptr_ptr
!= NULL
1151 && strcmp (bfd_asymbol_name (*q
->sym_ptr_ptr
), info
->symbol
) == 0)
1153 /* We found a reloc for the symbol we are looking for. */
1154 einfo ("%C: %s\n", abfd
, sec
, q
->address
, info
->warning
);
1163 /* This is called when an undefined symbol is found. */
1166 undefined_symbol (info
, name
, abfd
, section
, address
, fatal
)
1167 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1172 boolean fatal ATTRIBUTE_UNUSED
;
1174 static char *error_name
;
1175 static unsigned int error_count
;
1177 #define MAX_ERRORS_IN_A_ROW 5
1179 if (config
.warn_once
)
1181 static struct bfd_hash_table
*hash
;
1183 /* Only warn once about a particular undefined symbol. */
1187 hash
= ((struct bfd_hash_table
*)
1188 xmalloc (sizeof (struct bfd_hash_table
)));
1189 if (! bfd_hash_table_init (hash
, bfd_hash_newfunc
))
1190 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1193 if (bfd_hash_lookup (hash
, name
, false, false) != NULL
)
1196 if (bfd_hash_lookup (hash
, name
, true, true) == NULL
)
1197 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1200 /* We never print more than a reasonable number of errors in a row
1201 for a single symbol. */
1202 if (error_name
!= (char *) NULL
1203 && strcmp (name
, error_name
) == 0)
1208 if (error_name
!= (char *) NULL
)
1210 error_name
= xstrdup (name
);
1213 if (section
!= NULL
)
1215 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1217 einfo (_("%C: undefined reference to `%T'\n"),
1218 abfd
, section
, address
, name
);
1222 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1223 einfo (_("%D: more undefined references to `%T' follow\n"),
1224 abfd
, section
, address
, name
);
1228 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1230 einfo (_("%B: undefined reference to `%T'\n"),
1235 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1236 einfo (_("%B: more undefined references to `%T' follow\n"),
1243 /* This is called when a reloc overflows. */
1246 reloc_overflow (info
, name
, reloc_name
, addend
, abfd
, section
, address
)
1247 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1249 const char *reloc_name
;
1255 if (abfd
== (bfd
*) NULL
)
1256 einfo (_("%P%X: generated"));
1258 einfo ("%X%C:", abfd
, section
, address
);
1259 einfo (_(" relocation truncated to fit: %s %T"), reloc_name
, name
);
1261 einfo ("+%v", addend
);
1266 /* This is called when a dangerous relocation is made. */
1269 reloc_dangerous (info
, message
, abfd
, section
, address
)
1270 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1271 const char *message
;
1276 if (abfd
== (bfd
*) NULL
)
1277 einfo (_("%P%X: generated"));
1279 einfo ("%X%C:", abfd
, section
, address
);
1280 einfo (_("dangerous relocation: %s\n"), message
);
1284 /* This is called when a reloc is being generated attached to a symbol
1285 that is not being output. */
1288 unattached_reloc (info
, name
, abfd
, section
, address
)
1289 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1295 if (abfd
== (bfd
*) NULL
)
1296 einfo (_("%P%X: generated"));
1298 einfo ("%X%C:", abfd
, section
, address
);
1299 einfo (_(" reloc refers to symbol `%T' which is not being output\n"), name
);
1303 /* This is called if link_info.notice_all is set, or when a symbol in
1304 link_info.notice_hash is found. Symbols are put in notice_hash
1305 using the -y option. */
1308 notice (info
, name
, abfd
, section
, value
)
1309 struct bfd_link_info
*info
;
1315 if (! info
->notice_all
1316 || (info
->notice_hash
!= NULL
1317 && bfd_hash_lookup (info
->notice_hash
, name
, false, false) != NULL
))
1319 if (bfd_is_und_section (section
))
1320 einfo ("%B: reference to %s\n", abfd
, name
);
1322 einfo ("%B: definition of %s\n", abfd
, name
);
1325 if (command_line
.cref
|| nocrossref_list
!= NULL
)
1326 add_cref (name
, abfd
, section
, value
);