1 /* Main program of GNU linker.
2 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 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
=
139 constructor_callback
,
148 struct bfd_link_info link_info
;
155 if (output_bfd
&& output_bfd
->iostream
)
156 fclose((FILE *)(output_bfd
->iostream
));
157 if (delete_output_file_on_failure
)
158 unlink (output_filename
);
168 long start_time
= get_run_time ();
170 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
171 setlocale (LC_MESSAGES
, "");
173 bindtextdomain (PACKAGE
, LOCALEDIR
);
174 textdomain (PACKAGE
);
176 program_name
= argv
[0];
177 xmalloc_set_program_name (program_name
);
179 START_PROGRESS (program_name
, 0);
183 bfd_set_error_program_name (program_name
);
185 xatexit (remove_output
);
187 /* Set the default BFD target based on the configured target. Doing
188 this permits the linker to be configured for a particular target,
189 and linked against a shared BFD library which was configured for
190 a different target. The macro TARGET is defined by Makefile. */
191 if (! bfd_set_default_target (TARGET
))
193 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET
);
197 /* Initialize the data about options. */
198 trace_files
= trace_file_tries
= version_printed
= false;
199 whole_archive
= false;
200 config
.build_constructors
= true;
201 config
.dynamic_link
= false;
202 config
.has_shared
= false;
203 command_line
.force_common_definition
= false;
204 command_line
.interpreter
= NULL
;
205 command_line
.rpath
= NULL
;
206 command_line
.warn_mismatch
= true;
207 command_line
.check_section_addresses
= true;
209 /* We initialize DEMANGLING based on the environment variable
210 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
211 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
212 environment. Acting the same way here lets us provide the same
213 interface by default. */
214 demangling
= getenv ("COLLECT_NO_DEMANGLE") == NULL
;
216 link_info
.callbacks
= &link_callbacks
;
217 link_info
.relocateable
= false;
218 link_info
.emitrelocations
= false;
219 link_info
.shared
= false;
220 link_info
.symbolic
= false;
221 link_info
.static_link
= false;
222 link_info
.traditional_format
= false;
223 link_info
.optimize
= false;
224 link_info
.no_undefined
= false;
225 link_info
.strip
= strip_none
;
226 link_info
.discard
= discard_none
;
227 link_info
.keep_memory
= true;
228 link_info
.input_bfds
= NULL
;
229 link_info
.create_object_symbols_section
= NULL
;
230 link_info
.hash
= NULL
;
231 link_info
.keep_hash
= NULL
;
232 link_info
.notice_all
= false;
233 link_info
.notice_hash
= NULL
;
234 link_info
.wrap_hash
= NULL
;
235 link_info
.mpc860c0
= 0;
236 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
237 and _fini symbols. We are compatible. */
238 link_info
.init_function
= "_init";
239 link_info
.fini_function
= "_fini";
241 ldfile_add_arch ("");
243 config
.make_executable
= true;
244 force_make_executable
= false;
245 config
.magic_demand_paged
= true;
246 config
.text_read_only
= true;
247 config
.make_executable
= true;
249 emulation
= get_emulation (argc
, argv
);
250 ldemul_choose_mode (emulation
);
251 default_target
= ldemul_choose_target ();
253 ldemul_before_parse ();
254 lang_has_input_file
= false;
255 parse_args (argc
, argv
);
257 ldemul_set_symbols ();
259 if (link_info
.relocateable
)
261 if (command_line
.gc_sections
)
262 einfo ("%P%F: --gc-sections and -r may not be used together\n");
263 if (link_info
.mpc860c0
)
264 einfo (_("%P%F: -r and --mpc860c0 may not be used together\n"));
265 else if (command_line
.relax
)
266 einfo (_("%P%F: --relax and -r may not be used together\n"));
267 if (link_info
.shared
)
268 einfo (_("%P%F: -r and -shared may not be used together\n"));
271 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
272 don't see how else this can be handled, since in this case we
273 must preserve all externally visible symbols. */
274 if (link_info
.relocateable
&& link_info
.strip
== strip_all
)
276 link_info
.strip
= strip_debugger
;
277 if (link_info
.discard
== discard_none
)
278 link_info
.discard
= discard_all
;
281 /* This essentially adds another -L directory so this must be done after
282 the -L's in argv have been processed. */
285 if (had_script
== false)
287 /* Read the emulation's appropriate default script. */
289 char *s
= ldemul_get_script (&isfile
);
292 ldfile_open_command_file (s
);
295 if (trace_file_tries
)
297 info_msg (_("using internal linker script:\n"));
298 info_msg ("==================================================\n");
300 info_msg ("\n==================================================\n");
305 parser_input
= input_script
;
312 if (lang_has_input_file
== false)
316 einfo (_("%P%F: no input files\n"));
321 info_msg (_("%P: mode %s\n"), emulation
);
324 ldemul_after_parse ();
327 if (config
.map_filename
)
329 if (strcmp (config
.map_filename
, "-") == 0)
331 config
.map_file
= stdout
;
335 config
.map_file
= fopen (config
.map_filename
, FOPEN_WT
);
336 if (config
.map_file
== (FILE *) NULL
)
338 bfd_set_error (bfd_error_system_call
);
339 einfo (_("%P%F: cannot open map file %s: %E\n"),
340 config
.map_filename
);
348 /* Print error messages for any missing symbols, for any warning
349 symbols, and possibly multiple definitions */
351 if (! link_info
.relocateable
)
353 /* Look for a text section and switch the readonly attribute in it. */
354 asection
* found
= bfd_get_section_by_name (output_bfd
, ".text");
356 if (found
!= (asection
*) NULL
)
358 if (config
.text_read_only
)
359 found
->flags
|= SEC_READONLY
;
361 found
->flags
&= ~SEC_READONLY
;
365 if (link_info
.relocateable
)
366 output_bfd
->flags
&= ~EXEC_P
;
368 output_bfd
->flags
|= EXEC_P
;
372 if (config
.map_file
!= NULL
)
374 if (command_line
.cref
)
375 output_cref (config
.map_file
!= NULL
? config
.map_file
: stdout
);
376 if (nocrossref_list
!= NULL
)
377 check_nocrossrefs ();
379 /* Even if we're producing relocateable output, some non-fatal errors should
380 be reported in the exit status. (What non-fatal errors, if any, do we
381 want to ignore for relocateable output?) */
383 if (config
.make_executable
== false && force_make_executable
== false)
385 if (trace_files
== true)
387 einfo (_("%P: link errors found, deleting executable `%s'\n"),
391 /* The file will be removed by remove_output. */
397 if (! bfd_close (output_bfd
))
398 einfo (_("%F%B: final close failed: %E\n"), output_bfd
);
400 /* If the --force-exe-suffix is enabled, and we're making an
401 executable file and it doesn't end in .exe, copy it to one which does. */
403 if (! link_info
.relocateable
&& command_line
.force_exe_suffix
)
405 int len
= strlen (output_filename
);
407 || (strcasecmp (output_filename
+ len
- 4, ".exe") != 0
408 && strcasecmp (output_filename
+ len
- 4, ".dll") != 0))
412 const int bsize
= 4096;
413 char *buf
= xmalloc (bsize
);
415 char *dst_name
= xmalloc (len
+ 5);
416 strcpy (dst_name
, output_filename
);
417 strcat (dst_name
, ".exe");
418 src
= fopen (output_filename
, FOPEN_RB
);
419 dst
= fopen (dst_name
, FOPEN_WB
);
422 einfo (_("%X%P: unable to open for source of copy `%s'\n"), output_filename
);
424 einfo (_("%X%P: unable to open for destination of copy `%s'\n"), dst_name
);
425 while ((l
= fread (buf
, 1, bsize
, src
)) > 0)
427 int done
= fwrite (buf
, 1, l
, dst
);
430 einfo (_("%P: Error writing file `%s'\n"), dst_name
);
434 if (fclose (dst
) == EOF
)
436 einfo (_("%P: Error closing file `%s'\n"), dst_name
);
444 END_PROGRESS (program_name
);
449 char *lim
= (char *) sbrk (0);
451 long run_time
= get_run_time () - start_time
;
453 fprintf (stderr
, _("%s: total time in link: %ld.%06ld\n"),
454 program_name
, run_time
/ 1000000, run_time
% 1000000);
456 fprintf (stderr
, _("%s: data size %ld\n"), program_name
,
457 (long) (lim
- (char *) &environ
));
461 /* Prevent remove_output from doing anything, after a successful link. */
462 output_filename
= NULL
;
468 /* We need to find any explicitly given emulation in order to initialize the
469 state that's needed by the lex&yacc argument parser (parse_args). */
472 get_emulation (argc
, argv
)
479 emulation
= getenv (EMULATION_ENVIRON
);
480 if (emulation
== NULL
)
481 emulation
= DEFAULT_EMULATION
;
483 for (i
= 1; i
< argc
; i
++)
485 if (!strncmp (argv
[i
], "-m", 2))
487 if (argv
[i
][2] == '\0')
492 emulation
= argv
[i
+ 1];
497 einfo(_("%P%F: missing argument to -m\n"));
500 else if (strcmp (argv
[i
], "-mips1") == 0
501 || strcmp (argv
[i
], "-mips2") == 0
502 || strcmp (argv
[i
], "-mips3") == 0
503 || strcmp (argv
[i
], "-mips4") == 0)
505 /* FIXME: The arguments -mips1, -mips2 and -mips3 are
506 passed to the linker by some MIPS compilers. They
507 generally tell the linker to use a slightly different
508 library path. Perhaps someday these should be
509 implemented as emulations; until then, we just ignore
510 the arguments and hope that nobody ever creates
511 emulations named ips1, ips2 or ips3. */
513 else if (strcmp (argv
[i
], "-m486") == 0)
515 /* FIXME: The argument -m486 is passed to the linker on
516 some Linux systems. Hope that nobody creates an
517 emulation named 486. */
522 emulation
= &argv
[i
][2];
530 /* If directory DIR contains an "ldscripts" subdirectory,
531 add DIR to the library search path and return true,
532 else return false. */
535 check_for_scripts_dir (dir
)
543 dirlen
= strlen (dir
);
544 /* sizeof counts the terminating NUL. */
545 buf
= (char *) xmalloc (dirlen
+ sizeof("/ldscripts"));
546 sprintf (buf
, "%s/ldscripts", dir
);
548 res
= stat (buf
, &s
) == 0 && S_ISDIR (s
.st_mode
);
551 ldfile_add_library_path (dir
, false);
555 /* Set the default directory for finding script files.
556 Libraries will be searched for here too, but that's ok.
557 We look for the "ldscripts" directory in:
559 SCRIPTDIR (passed from Makefile)
560 the dir where this program is (for using it from the build tree)
561 the dir where this program is/../lib (for installing the tool suite elsewhere) */
569 if (check_for_scripts_dir (SCRIPTDIR
))
570 return; /* We've been installed normally. */
572 /* Look for "ldscripts" in the dir where our binary is. */
573 end
= strrchr (program_name
, '/');
574 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
576 /* We could have \foo\bar, or /foo\bar. */
577 char *bslash
= strrchr (program_name
, '\\');
578 if (end
== NULL
|| (bslash
!= NULL
&& bslash
> end
))
585 /* Don't look for ldscripts in the current directory. There is
586 too much potential for confusion. */
590 dirlen
= end
- program_name
;
591 /* Make a copy of program_name in dir.
592 Leave room for later "/../lib". */
593 dir
= (char *) xmalloc (dirlen
+ 8);
594 strncpy (dir
, program_name
, dirlen
);
597 if (check_for_scripts_dir (dir
))
598 return; /* Don't free dir. */
600 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
601 strcpy (dir
+ dirlen
, "/../lib");
602 if (check_for_scripts_dir (dir
))
605 free (dir
); /* Well, we tried. */
612 if (link_info
.notice_hash
== (struct bfd_hash_table
*) NULL
)
614 link_info
.notice_hash
= ((struct bfd_hash_table
*)
615 xmalloc (sizeof (struct bfd_hash_table
)));
616 if (! bfd_hash_table_init_n (link_info
.notice_hash
,
619 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
622 if (bfd_hash_lookup (link_info
.notice_hash
, name
, true, true)
623 == (struct bfd_hash_entry
*) NULL
)
624 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
627 /* Record a symbol to be wrapped, from the --wrap option. */
633 if (link_info
.wrap_hash
== NULL
)
635 link_info
.wrap_hash
= ((struct bfd_hash_table
*)
636 xmalloc (sizeof (struct bfd_hash_table
)));
637 if (! bfd_hash_table_init_n (link_info
.wrap_hash
,
640 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
642 if (bfd_hash_lookup (link_info
.wrap_hash
, name
, true, true) == NULL
)
643 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
646 /* Handle the -retain-symbols-file option. */
649 add_keepsyms_file (filename
)
650 const char *filename
;
657 if (link_info
.strip
== strip_some
)
658 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
660 file
= fopen (filename
, "r");
661 if (file
== (FILE *) NULL
)
663 bfd_set_error (bfd_error_system_call
);
664 einfo ("%X%P: %s: %E\n", filename
);
668 link_info
.keep_hash
= ((struct bfd_hash_table
*)
669 xmalloc (sizeof (struct bfd_hash_table
)));
670 if (! bfd_hash_table_init (link_info
.keep_hash
, bfd_hash_newfunc
))
671 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
674 buf
= (char *) xmalloc (bufsize
);
686 while (! isspace (c
) && c
!= EOF
)
693 buf
= xrealloc (buf
, bufsize
);
700 if (bfd_hash_lookup (link_info
.keep_hash
, buf
, true, true)
701 == (struct bfd_hash_entry
*) NULL
)
702 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
706 if (link_info
.strip
!= strip_none
)
707 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
709 link_info
.strip
= strip_some
;
712 /* Callbacks from the BFD linker routines. */
714 /* This is called when BFD has decided to include an archive member in
719 add_archive_element (info
, abfd
, name
)
720 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
724 lang_input_statement_type
*input
;
726 input
= ((lang_input_statement_type
*)
727 xmalloc (sizeof (lang_input_statement_type
)));
728 input
->filename
= abfd
->filename
;
729 input
->local_sym_name
= abfd
->filename
;
730 input
->the_bfd
= abfd
;
731 input
->asymbols
= NULL
;
733 input
->just_syms_flag
= false;
734 input
->loaded
= false;
735 input
->search_dirs_flag
= false;
737 /* FIXME: The following fields are not set: header.next,
738 header.type, closed, passive_position, symbol_count,
739 next_real_file, is_archive, target, real. This bit of code is
740 from the old decode_library_subfile function. I don't know
741 whether any of those fields matters. */
743 ldlang_add_file (input
);
745 if (config
.map_file
!= (FILE *) NULL
)
747 static boolean header_printed
;
748 struct bfd_link_hash_entry
*h
;
752 h
= bfd_link_hash_lookup (link_info
.hash
, name
, false, false, true);
764 case bfd_link_hash_defined
:
765 case bfd_link_hash_defweak
:
766 from
= h
->u
.def
.section
->owner
;
769 case bfd_link_hash_undefined
:
770 case bfd_link_hash_undefweak
:
771 from
= h
->u
.undef
.abfd
;
774 case bfd_link_hash_common
:
775 from
= h
->u
.c
.p
->section
->owner
;
780 if (! header_printed
)
784 sprintf (buf
, "%-29s %s\n\n", _("Archive member included"),
785 _("because of file (symbol)"));
787 header_printed
= true;
790 if (bfd_my_archive (abfd
) == NULL
)
792 minfo ("%s", bfd_get_filename (abfd
));
793 len
= strlen (bfd_get_filename (abfd
));
797 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd
)),
798 bfd_get_filename (abfd
));
799 len
= (strlen (bfd_get_filename (bfd_my_archive (abfd
)))
800 + strlen (bfd_get_filename (abfd
))
818 minfo ("(%T)\n", h
->root
.string
);
820 minfo ("(%s)\n", name
);
823 if (trace_files
|| trace_file_tries
)
824 info_msg ("%I\n", input
);
829 /* This is called when BFD has discovered a symbol which is defined
834 multiple_definition (info
, name
, obfd
, osec
, oval
, nbfd
, nsec
, nval
)
835 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
844 /* If either section has the output_section field set to
845 bfd_abs_section_ptr, it means that the section is being
846 discarded, and this is not really a multiple definition at all.
847 FIXME: It would be cleaner to somehow ignore symbols defined in
848 sections which are being discarded. */
849 if ((osec
->output_section
!= NULL
850 && ! bfd_is_abs_section (osec
)
851 && bfd_is_abs_section (osec
->output_section
))
852 || (nsec
->output_section
!= NULL
853 && ! bfd_is_abs_section (nsec
)
854 && bfd_is_abs_section (nsec
->output_section
)))
857 einfo (_("%X%C: multiple definition of `%T'\n"),
858 nbfd
, nsec
, nval
, name
);
859 if (obfd
!= (bfd
*) NULL
)
860 einfo (_("%D: first defined here\n"), obfd
, osec
, oval
);
864 /* This is called when there is a definition of a common symbol, or
865 when a common symbol is found for a symbol that is already defined,
866 or when two common symbols are found. We only do something if
867 -warn-common was used. */
871 multiple_common (info
, name
, obfd
, otype
, osize
, nbfd
, ntype
, nsize
)
872 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
875 enum bfd_link_hash_type otype
;
878 enum bfd_link_hash_type ntype
;
881 if (! config
.warn_common
)
884 if (ntype
== bfd_link_hash_defined
885 || ntype
== bfd_link_hash_defweak
886 || ntype
== bfd_link_hash_indirect
)
888 ASSERT (otype
== bfd_link_hash_common
);
889 einfo (_("%B: warning: definition of `%T' overriding common\n"),
892 einfo (_("%B: warning: common is here\n"), obfd
);
894 else if (otype
== bfd_link_hash_defined
895 || otype
== bfd_link_hash_defweak
896 || otype
== bfd_link_hash_indirect
)
898 ASSERT (ntype
== bfd_link_hash_common
);
899 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
902 einfo (_("%B: warning: defined here\n"), obfd
);
906 ASSERT (otype
== bfd_link_hash_common
&& ntype
== bfd_link_hash_common
);
909 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
912 einfo (_("%B: warning: larger common is here\n"), obfd
);
914 else if (nsize
> osize
)
916 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
919 einfo (_("%B: warning: smaller common is here\n"), obfd
);
923 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd
, name
);
925 einfo (_("%B: warning: previous common is here\n"), obfd
);
932 /* This is called when BFD has discovered a set element. H is the
933 entry in the linker hash table for the set. SECTION and VALUE
934 represent a value which should be added to the set. */
938 add_to_set (info
, h
, reloc
, abfd
, section
, value
)
939 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
940 struct bfd_link_hash_entry
*h
;
941 bfd_reloc_code_real_type reloc
;
946 if (config
.warn_constructors
)
947 einfo (_("%P: warning: global constructor %s used\n"),
950 if (! config
.build_constructors
)
953 ldctor_add_set_entry (h
, reloc
, (const char *) NULL
, section
, value
);
955 if (h
->type
== bfd_link_hash_new
)
957 h
->type
= bfd_link_hash_undefined
;
958 h
->u
.undef
.abfd
= abfd
;
959 /* We don't call bfd_link_add_undef to add this to the list of
960 undefined symbols because we are going to define it
967 /* This is called when BFD has discovered a constructor. This is only
968 called for some object file formats--those which do not handle
969 constructors in some more clever fashion. This is similar to
970 adding an element to a set, but less general. */
973 constructor_callback (info
, constructor
, name
, abfd
, section
, value
)
974 struct bfd_link_info
*info
;
982 struct bfd_link_hash_entry
*h
;
983 char set_name
[1 + sizeof "__CTOR_LIST__"];
985 if (config
.warn_constructors
)
986 einfo (_("%P: warning: global constructor %s used\n"), name
);
988 if (! config
.build_constructors
)
991 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
992 useful error message. */
993 if (bfd_reloc_type_lookup (output_bfd
, BFD_RELOC_CTOR
) == NULL
994 && (link_info
.relocateable
995 || bfd_reloc_type_lookup (abfd
, BFD_RELOC_CTOR
) == NULL
))
996 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
999 if (bfd_get_symbol_leading_char (abfd
) != '\0')
1000 *s
++ = bfd_get_symbol_leading_char (abfd
);
1002 strcpy (s
, "__CTOR_LIST__");
1004 strcpy (s
, "__DTOR_LIST__");
1006 h
= bfd_link_hash_lookup (info
->hash
, set_name
, true, true, true);
1007 if (h
== (struct bfd_link_hash_entry
*) NULL
)
1008 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1009 if (h
->type
== bfd_link_hash_new
)
1011 h
->type
= bfd_link_hash_undefined
;
1012 h
->u
.undef
.abfd
= abfd
;
1013 /* We don't call bfd_link_add_undef to add this to the list of
1014 undefined symbols because we are going to define it
1018 ldctor_add_set_entry (h
, BFD_RELOC_CTOR
, name
, section
, value
);
1022 /* A structure used by warning_callback to pass information through
1023 bfd_map_over_sections. */
1025 struct warning_callback_info
1028 const char *warning
;
1033 /* This is called when there is a reference to a warning symbol. */
1037 warning_callback (info
, warning
, symbol
, abfd
, section
, address
)
1038 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1039 const char *warning
;
1045 /* This is a hack to support warn_multiple_gp. FIXME: This should
1046 have a cleaner interface, but what? */
1047 if (! config
.warn_multiple_gp
1048 && strcmp (warning
, "using multiple gp values") == 0)
1051 if (section
!= NULL
)
1052 einfo ("%C: %s\n", abfd
, section
, address
, warning
);
1053 else if (abfd
== NULL
)
1054 einfo ("%P: %s\n", warning
);
1055 else if (symbol
== NULL
)
1056 einfo ("%B: %s\n", abfd
, warning
);
1059 lang_input_statement_type
*entry
;
1061 struct warning_callback_info info
;
1063 /* Look through the relocs to see if we can find a plausible
1066 entry
= (lang_input_statement_type
*) abfd
->usrdata
;
1067 if (entry
!= NULL
&& entry
->asymbols
!= NULL
)
1068 asymbols
= entry
->asymbols
;
1074 symsize
= bfd_get_symtab_upper_bound (abfd
);
1076 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1077 asymbols
= (asymbol
**) xmalloc (symsize
);
1078 symbol_count
= bfd_canonicalize_symtab (abfd
, asymbols
);
1079 if (symbol_count
< 0)
1080 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1083 entry
->asymbols
= asymbols
;
1084 entry
->symbol_count
= symbol_count
;
1089 info
.warning
= warning
;
1090 info
.symbol
= symbol
;
1091 info
.asymbols
= asymbols
;
1092 bfd_map_over_sections (abfd
, warning_find_reloc
, (PTR
) &info
);
1095 einfo ("%B: %s\n", abfd
, warning
);
1104 /* This is called by warning_callback for each section. It checks the
1105 relocs of the section to see if it can find a reference to the
1106 symbol which triggered the warning. If it can, it uses the reloc
1107 to give an error message with a file and line number. */
1110 warning_find_reloc (abfd
, sec
, iarg
)
1115 struct warning_callback_info
*info
= (struct warning_callback_info
*) iarg
;
1119 arelent
**p
, **pend
;
1124 relsize
= bfd_get_reloc_upper_bound (abfd
, sec
);
1126 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1130 relpp
= (arelent
**) xmalloc (relsize
);
1131 relcount
= bfd_canonicalize_reloc (abfd
, sec
, relpp
, info
->asymbols
);
1133 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1136 pend
= p
+ relcount
;
1137 for (; p
< pend
&& *p
!= NULL
; p
++)
1141 if (q
->sym_ptr_ptr
!= NULL
1142 && *q
->sym_ptr_ptr
!= NULL
1143 && strcmp (bfd_asymbol_name (*q
->sym_ptr_ptr
), info
->symbol
) == 0)
1145 /* We found a reloc for the symbol we are looking for. */
1146 einfo ("%C: %s\n", abfd
, sec
, q
->address
, info
->warning
);
1155 /* This is called when an undefined symbol is found. */
1159 undefined_symbol (info
, name
, abfd
, section
, address
, fatal
)
1160 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1165 boolean fatal ATTRIBUTE_UNUSED
;
1167 static char *error_name
;
1168 static unsigned int error_count
;
1170 #define MAX_ERRORS_IN_A_ROW 5
1172 if (config
.warn_once
)
1174 static struct bfd_hash_table
*hash
;
1176 /* Only warn once about a particular undefined symbol. */
1180 hash
= ((struct bfd_hash_table
*)
1181 xmalloc (sizeof (struct bfd_hash_table
)));
1182 if (! bfd_hash_table_init (hash
, bfd_hash_newfunc
))
1183 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1186 if (bfd_hash_lookup (hash
, name
, false, false) != NULL
)
1189 if (bfd_hash_lookup (hash
, name
, true, true) == NULL
)
1190 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1193 /* We never print more than a reasonable number of errors in a row
1194 for a single symbol. */
1195 if (error_name
!= (char *) NULL
1196 && strcmp (name
, error_name
) == 0)
1201 if (error_name
!= (char *) NULL
)
1203 error_name
= buystring (name
);
1206 if (section
!= NULL
)
1208 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1210 einfo (_("%C: undefined reference to `%T'\n"),
1211 abfd
, section
, address
, name
);
1215 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1216 einfo (_("%D: more undefined references to `%T' follow\n"),
1217 abfd
, section
, address
, name
);
1221 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1223 einfo (_("%B: undefined reference to `%T'\n"),
1228 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1229 einfo (_("%B: more undefined references to `%T' follow\n"),
1236 /* This is called when a reloc overflows. */
1240 reloc_overflow (info
, name
, reloc_name
, addend
, abfd
, section
, address
)
1241 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1243 const char *reloc_name
;
1249 if (abfd
== (bfd
*) NULL
)
1250 einfo (_("%P%X: generated"));
1252 einfo ("%X%C:", abfd
, section
, address
);
1253 einfo (_(" relocation truncated to fit: %s %T"), reloc_name
, name
);
1255 einfo ("+%v", addend
);
1260 /* This is called when a dangerous relocation is made. */
1264 reloc_dangerous (info
, message
, abfd
, section
, address
)
1265 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1266 const char *message
;
1271 if (abfd
== (bfd
*) NULL
)
1272 einfo (_("%P%X: generated"));
1274 einfo ("%X%C:", abfd
, section
, address
);
1275 einfo (_("dangerous relocation: %s\n"), message
);
1279 /* This is called when a reloc is being generated attached to a symbol
1280 that is not being output. */
1284 unattached_reloc (info
, name
, abfd
, section
, address
)
1285 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1291 if (abfd
== (bfd
*) NULL
)
1292 einfo (_("%P%X: generated"));
1294 einfo ("%X%C:", abfd
, section
, address
);
1295 einfo (_(" reloc refers to symbol `%T' which is not being output\n"), name
);
1299 /* This is called if link_info.notice_all is set, or when a symbol in
1300 link_info.notice_hash is found. Symbols are put in notice_hash
1301 using the -y option. */
1304 notice (info
, name
, abfd
, section
, value
)
1305 struct bfd_link_info
*info
;
1311 if (! info
->notice_all
1312 || (info
->notice_hash
!= NULL
1313 && bfd_hash_lookup (info
->notice_hash
, name
, false, false) != NULL
))
1315 if (bfd_is_und_section (section
))
1316 einfo ("%B: reference to %s\n", abfd
, name
);
1318 einfo ("%B: definition of %s\n", abfd
, name
);
1321 if (command_line
.cref
|| nocrossref_list
!= NULL
)
1322 add_cref (name
, abfd
, section
, value
);