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 /* Look for a text section and switch the readonly attribute in it. */
353 asection
* found
= bfd_get_section_by_name (output_bfd
, ".text");
355 if (found
!= (asection
*) NULL
)
357 if (config
.text_read_only
)
358 found
->flags
|= SEC_READONLY
;
360 found
->flags
&= ~SEC_READONLY
;
364 if (link_info
.relocateable
)
365 output_bfd
->flags
&= ~EXEC_P
;
367 output_bfd
->flags
|= EXEC_P
;
371 if (config
.map_file
!= NULL
)
373 if (command_line
.cref
)
374 output_cref (config
.map_file
!= NULL
? config
.map_file
: stdout
);
375 if (nocrossref_list
!= NULL
)
376 check_nocrossrefs ();
378 /* Even if we're producing relocateable output, some non-fatal errors should
379 be reported in the exit status. (What non-fatal errors, if any, do we
380 want to ignore for relocateable output?) */
382 if (config
.make_executable
== false && force_make_executable
== false)
384 if (trace_files
== true)
386 einfo (_("%P: link errors found, deleting executable `%s'\n"),
390 /* The file will be removed by remove_output. */
396 if (! bfd_close (output_bfd
))
397 einfo (_("%F%B: final close failed: %E\n"), output_bfd
);
399 /* If the --force-exe-suffix is enabled, and we're making an
400 executable file and it doesn't end in .exe, copy it to one which does. */
402 if (! link_info
.relocateable
&& command_line
.force_exe_suffix
)
404 int len
= strlen (output_filename
);
406 || (strcasecmp (output_filename
+ len
- 4, ".exe") != 0
407 && strcasecmp (output_filename
+ len
- 4, ".dll") != 0))
411 const int bsize
= 4096;
412 char *buf
= xmalloc (bsize
);
414 char *dst_name
= xmalloc (len
+ 5);
415 strcpy (dst_name
, output_filename
);
416 strcat (dst_name
, ".exe");
417 src
= fopen (output_filename
, FOPEN_RB
);
418 dst
= fopen (dst_name
, FOPEN_WB
);
421 einfo (_("%X%P: unable to open for source of copy `%s'\n"), output_filename
);
423 einfo (_("%X%P: unable to open for destination of copy `%s'\n"), dst_name
);
424 while ((l
= fread (buf
, 1, bsize
, src
)) > 0)
426 int done
= fwrite (buf
, 1, l
, dst
);
429 einfo (_("%P: Error writing file `%s'\n"), dst_name
);
433 if (fclose (dst
) == EOF
)
435 einfo (_("%P: Error closing file `%s'\n"), dst_name
);
443 END_PROGRESS (program_name
);
448 char *lim
= (char *) sbrk (0);
450 long run_time
= get_run_time () - start_time
;
452 fprintf (stderr
, _("%s: total time in link: %ld.%06ld\n"),
453 program_name
, run_time
/ 1000000, run_time
% 1000000);
455 fprintf (stderr
, _("%s: data size %ld\n"), program_name
,
456 (long) (lim
- (char *) &environ
));
460 /* Prevent remove_output from doing anything, after a successful link. */
461 output_filename
= NULL
;
467 /* We need to find any explicitly given emulation in order to initialize the
468 state that's needed by the lex&yacc argument parser (parse_args). */
471 get_emulation (argc
, argv
)
478 emulation
= getenv (EMULATION_ENVIRON
);
479 if (emulation
== NULL
)
480 emulation
= DEFAULT_EMULATION
;
482 for (i
= 1; i
< argc
; i
++)
484 if (!strncmp (argv
[i
], "-m", 2))
486 if (argv
[i
][2] == '\0')
491 emulation
= argv
[i
+ 1];
496 einfo(_("%P%F: missing argument to -m\n"));
499 else if (strcmp (argv
[i
], "-mips1") == 0
500 || strcmp (argv
[i
], "-mips2") == 0
501 || strcmp (argv
[i
], "-mips3") == 0
502 || strcmp (argv
[i
], "-mips4") == 0)
504 /* FIXME: The arguments -mips1, -mips2 and -mips3 are
505 passed to the linker by some MIPS compilers. They
506 generally tell the linker to use a slightly different
507 library path. Perhaps someday these should be
508 implemented as emulations; until then, we just ignore
509 the arguments and hope that nobody ever creates
510 emulations named ips1, ips2 or ips3. */
512 else if (strcmp (argv
[i
], "-m486") == 0)
514 /* FIXME: The argument -m486 is passed to the linker on
515 some Linux systems. Hope that nobody creates an
516 emulation named 486. */
521 emulation
= &argv
[i
][2];
529 /* If directory DIR contains an "ldscripts" subdirectory,
530 add DIR to the library search path and return true,
531 else return false. */
534 check_for_scripts_dir (dir
)
542 dirlen
= strlen (dir
);
543 /* sizeof counts the terminating NUL. */
544 buf
= (char *) xmalloc (dirlen
+ sizeof("/ldscripts"));
545 sprintf (buf
, "%s/ldscripts", dir
);
547 res
= stat (buf
, &s
) == 0 && S_ISDIR (s
.st_mode
);
550 ldfile_add_library_path (dir
, false);
554 /* Set the default directory for finding script files.
555 Libraries will be searched for here too, but that's ok.
556 We look for the "ldscripts" directory in:
558 SCRIPTDIR (passed from Makefile)
559 the dir where this program is (for using it from the build tree)
560 the dir where this program is/../lib (for installing the tool suite elsewhere) */
568 if (check_for_scripts_dir (SCRIPTDIR
))
569 return; /* We've been installed normally. */
571 /* Look for "ldscripts" in the dir where our binary is. */
572 end
= strrchr (program_name
, '/');
573 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
575 /* We could have \foo\bar, or /foo\bar. */
576 char *bslash
= strrchr (program_name
, '\\');
584 /* Don't look for ldscripts in the current directory. There is
585 too much potential for confusion. */
589 dirlen
= end
- program_name
;
590 /* Make a copy of program_name in dir.
591 Leave room for later "/../lib". */
592 dir
= (char *) xmalloc (dirlen
+ 8);
593 strncpy (dir
, program_name
, dirlen
);
596 if (check_for_scripts_dir (dir
))
597 return; /* Don't free dir. */
599 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
600 strcpy (dir
+ dirlen
, "/../lib");
601 if (check_for_scripts_dir (dir
))
604 free (dir
); /* Well, we tried. */
611 if (link_info
.notice_hash
== (struct bfd_hash_table
*) NULL
)
613 link_info
.notice_hash
= ((struct bfd_hash_table
*)
614 xmalloc (sizeof (struct bfd_hash_table
)));
615 if (! bfd_hash_table_init_n (link_info
.notice_hash
,
618 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
621 if (bfd_hash_lookup (link_info
.notice_hash
, name
, true, true)
622 == (struct bfd_hash_entry
*) NULL
)
623 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
626 /* Record a symbol to be wrapped, from the --wrap option. */
632 if (link_info
.wrap_hash
== NULL
)
634 link_info
.wrap_hash
= ((struct bfd_hash_table
*)
635 xmalloc (sizeof (struct bfd_hash_table
)));
636 if (! bfd_hash_table_init_n (link_info
.wrap_hash
,
639 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
641 if (bfd_hash_lookup (link_info
.wrap_hash
, name
, true, true) == NULL
)
642 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
645 /* Handle the -retain-symbols-file option. */
648 add_keepsyms_file (filename
)
649 const char *filename
;
656 if (link_info
.strip
== strip_some
)
657 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
659 file
= fopen (filename
, "r");
660 if (file
== (FILE *) NULL
)
662 bfd_set_error (bfd_error_system_call
);
663 einfo ("%X%P: %s: %E\n", filename
);
667 link_info
.keep_hash
= ((struct bfd_hash_table
*)
668 xmalloc (sizeof (struct bfd_hash_table
)));
669 if (! bfd_hash_table_init (link_info
.keep_hash
, bfd_hash_newfunc
))
670 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
673 buf
= (char *) xmalloc (bufsize
);
685 while (! isspace (c
) && c
!= EOF
)
692 buf
= xrealloc (buf
, bufsize
);
699 if (bfd_hash_lookup (link_info
.keep_hash
, buf
, true, true)
700 == (struct bfd_hash_entry
*) NULL
)
701 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
705 if (link_info
.strip
!= strip_none
)
706 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
708 link_info
.strip
= strip_some
;
711 /* Callbacks from the BFD linker routines. */
713 /* This is called when BFD has decided to include an archive member in
718 add_archive_element (info
, abfd
, name
)
719 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
723 lang_input_statement_type
*input
;
725 input
= ((lang_input_statement_type
*)
726 xmalloc (sizeof (lang_input_statement_type
)));
727 input
->filename
= abfd
->filename
;
728 input
->local_sym_name
= abfd
->filename
;
729 input
->the_bfd
= abfd
;
730 input
->asymbols
= NULL
;
732 input
->just_syms_flag
= false;
733 input
->loaded
= false;
734 input
->search_dirs_flag
= false;
736 /* FIXME: The following fields are not set: header.next,
737 header.type, closed, passive_position, symbol_count,
738 next_real_file, is_archive, target, real. This bit of code is
739 from the old decode_library_subfile function. I don't know
740 whether any of those fields matters. */
742 ldlang_add_file (input
);
744 if (config
.map_file
!= (FILE *) NULL
)
746 static boolean header_printed
;
747 struct bfd_link_hash_entry
*h
;
751 h
= bfd_link_hash_lookup (link_info
.hash
, name
, false, false, true);
763 case bfd_link_hash_defined
:
764 case bfd_link_hash_defweak
:
765 from
= h
->u
.def
.section
->owner
;
768 case bfd_link_hash_undefined
:
769 case bfd_link_hash_undefweak
:
770 from
= h
->u
.undef
.abfd
;
773 case bfd_link_hash_common
:
774 from
= h
->u
.c
.p
->section
->owner
;
779 if (! header_printed
)
783 sprintf (buf
, "%-29s %s\n\n", _("Archive member included"),
784 _("because of file (symbol)"));
786 header_printed
= true;
789 if (bfd_my_archive (abfd
) == NULL
)
791 minfo ("%s", bfd_get_filename (abfd
));
792 len
= strlen (bfd_get_filename (abfd
));
796 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd
)),
797 bfd_get_filename (abfd
));
798 len
= (strlen (bfd_get_filename (bfd_my_archive (abfd
)))
799 + strlen (bfd_get_filename (abfd
))
817 minfo ("(%T)\n", h
->root
.string
);
819 minfo ("(%s)\n", name
);
822 if (trace_files
|| trace_file_tries
)
823 info_msg ("%I\n", input
);
828 /* This is called when BFD has discovered a symbol which is defined
833 multiple_definition (info
, name
, obfd
, osec
, oval
, nbfd
, nsec
, nval
)
834 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
843 /* If either section has the output_section field set to
844 bfd_abs_section_ptr, it means that the section is being
845 discarded, and this is not really a multiple definition at all.
846 FIXME: It would be cleaner to somehow ignore symbols defined in
847 sections which are being discarded. */
848 if ((osec
->output_section
!= NULL
849 && ! bfd_is_abs_section (osec
)
850 && bfd_is_abs_section (osec
->output_section
))
851 || (nsec
->output_section
!= NULL
852 && ! bfd_is_abs_section (nsec
)
853 && bfd_is_abs_section (nsec
->output_section
)))
856 einfo (_("%X%C: multiple definition of `%T'\n"),
857 nbfd
, nsec
, nval
, name
);
858 if (obfd
!= (bfd
*) NULL
)
859 einfo (_("%D: first defined here\n"), obfd
, osec
, oval
);
863 /* This is called when there is a definition of a common symbol, or
864 when a common symbol is found for a symbol that is already defined,
865 or when two common symbols are found. We only do something if
866 -warn-common was used. */
870 multiple_common (info
, name
, obfd
, otype
, osize
, nbfd
, ntype
, nsize
)
871 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
874 enum bfd_link_hash_type otype
;
877 enum bfd_link_hash_type ntype
;
880 if (! config
.warn_common
)
883 if (ntype
== bfd_link_hash_defined
884 || ntype
== bfd_link_hash_defweak
885 || ntype
== bfd_link_hash_indirect
)
887 ASSERT (otype
== bfd_link_hash_common
);
888 einfo (_("%B: warning: definition of `%T' overriding common\n"),
891 einfo (_("%B: warning: common is here\n"), obfd
);
893 else if (otype
== bfd_link_hash_defined
894 || otype
== bfd_link_hash_defweak
895 || otype
== bfd_link_hash_indirect
)
897 ASSERT (ntype
== bfd_link_hash_common
);
898 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
901 einfo (_("%B: warning: defined here\n"), obfd
);
905 ASSERT (otype
== bfd_link_hash_common
&& ntype
== bfd_link_hash_common
);
908 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
911 einfo (_("%B: warning: larger common is here\n"), obfd
);
913 else if (nsize
> osize
)
915 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
918 einfo (_("%B: warning: smaller common is here\n"), obfd
);
922 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd
, name
);
924 einfo (_("%B: warning: previous common is here\n"), obfd
);
931 /* This is called when BFD has discovered a set element. H is the
932 entry in the linker hash table for the set. SECTION and VALUE
933 represent a value which should be added to the set. */
937 add_to_set (info
, h
, reloc
, abfd
, section
, value
)
938 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
939 struct bfd_link_hash_entry
*h
;
940 bfd_reloc_code_real_type reloc
;
945 if (config
.warn_constructors
)
946 einfo (_("%P: warning: global constructor %s used\n"),
949 if (! config
.build_constructors
)
952 ldctor_add_set_entry (h
, reloc
, (const char *) NULL
, section
, value
);
954 if (h
->type
== bfd_link_hash_new
)
956 h
->type
= bfd_link_hash_undefined
;
957 h
->u
.undef
.abfd
= abfd
;
958 /* We don't call bfd_link_add_undef to add this to the list of
959 undefined symbols because we are going to define it
966 /* This is called when BFD has discovered a constructor. This is only
967 called for some object file formats--those which do not handle
968 constructors in some more clever fashion. This is similar to
969 adding an element to a set, but less general. */
972 constructor_callback (info
, constructor
, name
, abfd
, section
, value
)
973 struct bfd_link_info
*info
;
981 struct bfd_link_hash_entry
*h
;
982 char set_name
[1 + sizeof "__CTOR_LIST__"];
984 if (config
.warn_constructors
)
985 einfo (_("%P: warning: global constructor %s used\n"), name
);
987 if (! config
.build_constructors
)
990 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
991 useful error message. */
992 if (bfd_reloc_type_lookup (output_bfd
, BFD_RELOC_CTOR
) == NULL
993 && (link_info
.relocateable
994 || bfd_reloc_type_lookup (abfd
, BFD_RELOC_CTOR
) == NULL
))
995 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
998 if (bfd_get_symbol_leading_char (abfd
) != '\0')
999 *s
++ = bfd_get_symbol_leading_char (abfd
);
1001 strcpy (s
, "__CTOR_LIST__");
1003 strcpy (s
, "__DTOR_LIST__");
1005 h
= bfd_link_hash_lookup (info
->hash
, set_name
, true, true, true);
1006 if (h
== (struct bfd_link_hash_entry
*) NULL
)
1007 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1008 if (h
->type
== bfd_link_hash_new
)
1010 h
->type
= bfd_link_hash_undefined
;
1011 h
->u
.undef
.abfd
= abfd
;
1012 /* We don't call bfd_link_add_undef to add this to the list of
1013 undefined symbols because we are going to define it
1017 ldctor_add_set_entry (h
, BFD_RELOC_CTOR
, name
, section
, value
);
1021 /* A structure used by warning_callback to pass information through
1022 bfd_map_over_sections. */
1024 struct warning_callback_info
1027 const char *warning
;
1032 /* This is called when there is a reference to a warning symbol. */
1036 warning_callback (info
, warning
, symbol
, abfd
, section
, address
)
1037 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1038 const char *warning
;
1044 /* This is a hack to support warn_multiple_gp. FIXME: This should
1045 have a cleaner interface, but what? */
1046 if (! config
.warn_multiple_gp
1047 && strcmp (warning
, "using multiple gp values") == 0)
1050 if (section
!= NULL
)
1051 einfo ("%C: %s\n", abfd
, section
, address
, warning
);
1052 else if (abfd
== NULL
)
1053 einfo ("%P: %s\n", warning
);
1054 else if (symbol
== NULL
)
1055 einfo ("%B: %s\n", abfd
, warning
);
1058 lang_input_statement_type
*entry
;
1060 struct warning_callback_info info
;
1062 /* Look through the relocs to see if we can find a plausible
1065 entry
= (lang_input_statement_type
*) abfd
->usrdata
;
1066 if (entry
!= NULL
&& entry
->asymbols
!= NULL
)
1067 asymbols
= entry
->asymbols
;
1073 symsize
= bfd_get_symtab_upper_bound (abfd
);
1075 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1076 asymbols
= (asymbol
**) xmalloc (symsize
);
1077 symbol_count
= bfd_canonicalize_symtab (abfd
, asymbols
);
1078 if (symbol_count
< 0)
1079 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
1082 entry
->asymbols
= asymbols
;
1083 entry
->symbol_count
= symbol_count
;
1088 info
.warning
= warning
;
1089 info
.symbol
= symbol
;
1090 info
.asymbols
= asymbols
;
1091 bfd_map_over_sections (abfd
, warning_find_reloc
, (PTR
) &info
);
1094 einfo ("%B: %s\n", abfd
, warning
);
1103 /* This is called by warning_callback for each section. It checks the
1104 relocs of the section to see if it can find a reference to the
1105 symbol which triggered the warning. If it can, it uses the reloc
1106 to give an error message with a file and line number. */
1109 warning_find_reloc (abfd
, sec
, iarg
)
1114 struct warning_callback_info
*info
= (struct warning_callback_info
*) iarg
;
1118 arelent
**p
, **pend
;
1123 relsize
= bfd_get_reloc_upper_bound (abfd
, sec
);
1125 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1129 relpp
= (arelent
**) xmalloc (relsize
);
1130 relcount
= bfd_canonicalize_reloc (abfd
, sec
, relpp
, info
->asymbols
);
1132 einfo (_("%B%F: could not read relocs: %E\n"), abfd
);
1135 pend
= p
+ relcount
;
1136 for (; p
< pend
&& *p
!= NULL
; p
++)
1140 if (q
->sym_ptr_ptr
!= NULL
1141 && *q
->sym_ptr_ptr
!= NULL
1142 && strcmp (bfd_asymbol_name (*q
->sym_ptr_ptr
), info
->symbol
) == 0)
1144 /* We found a reloc for the symbol we are looking for. */
1145 einfo ("%C: %s\n", abfd
, sec
, q
->address
, info
->warning
);
1154 /* This is called when an undefined symbol is found. */
1158 undefined_symbol (info
, name
, abfd
, section
, address
, fatal
)
1159 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1164 boolean fatal ATTRIBUTE_UNUSED
;
1166 static char *error_name
;
1167 static unsigned int error_count
;
1169 #define MAX_ERRORS_IN_A_ROW 5
1171 if (config
.warn_once
)
1173 static struct bfd_hash_table
*hash
;
1175 /* Only warn once about a particular undefined symbol. */
1179 hash
= ((struct bfd_hash_table
*)
1180 xmalloc (sizeof (struct bfd_hash_table
)));
1181 if (! bfd_hash_table_init (hash
, bfd_hash_newfunc
))
1182 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1185 if (bfd_hash_lookup (hash
, name
, false, false) != NULL
)
1188 if (bfd_hash_lookup (hash
, name
, true, true) == NULL
)
1189 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1192 /* We never print more than a reasonable number of errors in a row
1193 for a single symbol. */
1194 if (error_name
!= (char *) NULL
1195 && strcmp (name
, error_name
) == 0)
1200 if (error_name
!= (char *) NULL
)
1202 error_name
= buystring (name
);
1205 if (section
!= NULL
)
1207 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1209 einfo (_("%C: undefined reference to `%T'\n"),
1210 abfd
, section
, address
, name
);
1214 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1215 einfo (_("%D: more undefined references to `%T' follow\n"),
1216 abfd
, section
, address
, name
);
1220 if (error_count
< MAX_ERRORS_IN_A_ROW
)
1222 einfo (_("%B: undefined reference to `%T'\n"),
1227 else if (error_count
== MAX_ERRORS_IN_A_ROW
)
1228 einfo (_("%B: more undefined references to `%T' follow\n"),
1235 /* This is called when a reloc overflows. */
1239 reloc_overflow (info
, name
, reloc_name
, addend
, abfd
, section
, address
)
1240 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1242 const char *reloc_name
;
1248 if (abfd
== (bfd
*) NULL
)
1249 einfo (_("%P%X: generated"));
1251 einfo ("%X%C:", abfd
, section
, address
);
1252 einfo (_(" relocation truncated to fit: %s %T"), reloc_name
, name
);
1254 einfo ("+%v", addend
);
1259 /* This is called when a dangerous relocation is made. */
1263 reloc_dangerous (info
, message
, abfd
, section
, address
)
1264 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1265 const char *message
;
1270 if (abfd
== (bfd
*) NULL
)
1271 einfo (_("%P%X: generated"));
1273 einfo ("%X%C:", abfd
, section
, address
);
1274 einfo (_("dangerous relocation: %s\n"), message
);
1278 /* This is called when a reloc is being generated attached to a symbol
1279 that is not being output. */
1283 unattached_reloc (info
, name
, abfd
, section
, address
)
1284 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
1290 if (abfd
== (bfd
*) NULL
)
1291 einfo (_("%P%X: generated"));
1293 einfo ("%X%C:", abfd
, section
, address
);
1294 einfo (_(" reloc refers to symbol `%T' which is not being output\n"), name
);
1298 /* This is called if link_info.notice_all is set, or when a symbol in
1299 link_info.notice_hash is found. Symbols are put in notice_hash
1300 using the -y option. */
1303 notice (info
, name
, abfd
, section
, value
)
1304 struct bfd_link_info
*info
;
1310 if (! info
->notice_all
1311 || (info
->notice_hash
!= NULL
1312 && bfd_hash_lookup (info
->notice_hash
, name
, false, false) != NULL
))
1314 if (bfd_is_und_section (section
))
1315 einfo ("%B: reference to %s\n", abfd
, name
);
1317 einfo ("%B: definition of %s\n", abfd
, name
);
1320 if (command_line
.cref
|| nocrossref_list
!= NULL
)
1321 add_cref (name
, abfd
, section
, value
);