]> Git Repo - binutils.git/blob - ld/ldmain.c
Add support for ELF shared libraries.
[binutils.git] / ld / ldmain.c
1 /* Main program of GNU linker.
2    Copyright (C) 1991, 92, 93, 94 Free Software Foundation, Inc.
3    Written by Steve Chamberlain [email protected]
4
5 This file is part of GLD, the Gnu Linker.
6
7 GLD is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GLD is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GLD; see the file COPYING.  If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21
22 #include "bfd.h"
23 #include "sysdep.h"
24 #include <stdio.h>
25 #include "libiberty.h"
26 #include "bfdlink.h"
27
28 #include "config.h"
29 #include "ld.h"
30 #include "ldmain.h"
31 #include "ldmisc.h"
32 #include "ldwrite.h"
33 #include "ldgram.h"
34 #include "ldexp.h"
35 #include "ldlang.h"
36 #include "ldemul.h"
37 #include "ldlex.h"
38 #include "ldfile.h"
39 #include "ldctor.h"
40
41 /* Somewhere above, sys/stat.h got included . . . . */
42 #if !defined(S_ISDIR) && defined(S_IFDIR)
43 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
44 #endif
45
46 #include <string.h>
47
48 static char *get_emulation PARAMS ((int, char **));
49 static void set_scripts_dir PARAMS ((void));
50
51 /* EXPORTS */
52
53 char *default_target;
54 const char *output_filename = "a.out";
55
56 /* Name this program was invoked by.  */
57 char *program_name;
58
59 /* The file that we're creating */
60 bfd *output_bfd = 0;
61
62 /* Set by -G argument, for MIPS ECOFF target.  */
63 int g_switch_value = 8;
64
65 /* Nonzero means print names of input files as processed.  */
66 boolean trace_files;
67
68 /* Nonzero means same, but note open failures, too.  */
69 boolean trace_file_tries;
70
71 /* Nonzero means version number was printed, so exit successfully
72    instead of complaining if no input files are given.  */
73 boolean version_printed;
74
75 args_type command_line;
76
77 ld_config_type config;
78
79 static boolean check_for_scripts_dir PARAMS ((char *dir));
80 static boolean add_archive_element PARAMS ((struct bfd_link_info *, bfd *,
81                                             const char *));
82 static boolean multiple_definition PARAMS ((struct bfd_link_info *,
83                                             const char *,
84                                             bfd *, asection *, bfd_vma,
85                                             bfd *, asection *, bfd_vma));
86 static boolean multiple_common PARAMS ((struct bfd_link_info *,
87                                         const char *, bfd *,
88                                         enum bfd_link_hash_type, bfd_vma,
89                                         bfd *, enum bfd_link_hash_type,
90                                         bfd_vma));
91 static boolean add_to_set PARAMS ((struct bfd_link_info *,
92                                    struct bfd_link_hash_entry *,
93                                    bfd_reloc_code_real_type,
94                                    bfd *, asection *, bfd_vma));
95 static boolean constructor_callback PARAMS ((struct bfd_link_info *,
96                                              boolean constructor,
97                                              const char *name,
98                                              bfd *, asection *, bfd_vma));
99 static boolean warning_callback PARAMS ((struct bfd_link_info *,
100                                          const char *));
101 static boolean undefined_symbol PARAMS ((struct bfd_link_info *,
102                                          const char *, bfd *,
103                                          asection *, bfd_vma));
104 static boolean reloc_overflow PARAMS ((struct bfd_link_info *, const char *,
105                                        const char *, bfd_vma,
106                                        bfd *, asection *, bfd_vma));
107 static boolean reloc_dangerous PARAMS ((struct bfd_link_info *, const char *,
108                                         bfd *, asection *, bfd_vma));
109 static boolean unattached_reloc PARAMS ((struct bfd_link_info *,
110                                          const char *, bfd *, asection *,
111                                          bfd_vma));
112 static boolean notice_ysym PARAMS ((struct bfd_link_info *, const char *,
113                                     bfd *, asection *, bfd_vma));
114
115 static struct bfd_link_callbacks link_callbacks =
116 {
117   add_archive_element,
118   multiple_definition,
119   multiple_common,
120   add_to_set,
121   constructor_callback,
122   warning_callback,
123   undefined_symbol,
124   reloc_overflow,
125   reloc_dangerous,
126   unattached_reloc,
127   notice_ysym
128 };
129
130 struct bfd_link_info link_info;
131 \f
132 static void
133 remove_output ()
134 {
135   if (output_filename) 
136     {
137       if (output_bfd && output_bfd->iostream)
138         fclose((FILE *)(output_bfd->iostream));
139       if (delete_output_file_on_failure)
140         unlink (output_filename);
141     }
142 }
143
144 int
145 main (argc, argv)
146      int argc;
147      char **argv;
148 {
149   char *emulation;
150   long start_time = get_run_time ();
151
152   program_name = argv[0];
153   xmalloc_set_program_name (program_name);
154
155   bfd_init ();
156
157   xatexit (remove_output);
158
159   /* Initialize the data about options.  */
160   trace_files = trace_file_tries = version_printed = false;
161   config.build_constructors = true;
162   config.dynamic_link = false;
163   command_line.force_common_definition = false;
164
165   link_info.callbacks = &link_callbacks;
166   link_info.relocateable = false;
167   link_info.strip = strip_none;
168   link_info.discard = discard_none;
169   link_info.lprefix_len = 1;
170   link_info.lprefix = "L";
171   link_info.keep_memory = true;
172   link_info.input_bfds = NULL;
173   link_info.create_object_symbols_section = NULL;
174   link_info.hash = NULL;
175   link_info.keep_hash = NULL;
176   link_info.notice_hash = NULL;
177
178   ldfile_add_arch ("");
179
180   config.make_executable = true;
181   force_make_executable = false;
182   config.magic_demand_paged = true;
183   config.text_read_only = true;
184   config.make_executable = true;
185
186   emulation = get_emulation (argc, argv);
187   ldemul_choose_mode (emulation);
188   default_target = ldemul_choose_target ();
189   lang_init ();
190   ldemul_before_parse ();
191   lang_has_input_file = false;
192   parse_args (argc, argv);
193
194   if (link_info.relocateable)
195     {
196       if (command_line.relax)
197         einfo ("%P%F: -relax and -r may not be used together\n");
198       if (config.dynamic_link)
199         einfo ("%P%F: -r and -call_shared may not be used together\n");
200       if (link_info.strip == strip_all)
201         einfo ("%P%F: -r and -s may not be used together\n");
202     }
203
204   /* This essentially adds another -L directory so this must be done after
205      the -L's in argv have been processed.  */
206   set_scripts_dir ();
207
208   if (had_script == false)
209     {
210       /* Read the emulation's appropriate default script.  */
211       int isfile;
212       char *s = ldemul_get_script (&isfile);
213
214       if (isfile)
215         ldfile_open_command_file (s);
216       else
217         lex_redirect (s);
218       parser_input = input_script;
219       yyparse ();
220     }
221
222   lang_final ();
223
224   if (lang_has_input_file == false)
225     {
226       if (version_printed)
227         xexit (0);
228       einfo ("%P%F: no input files\n");
229     }
230
231   if (trace_files)
232     {
233       info_msg ("%P: mode %s\n", emulation);
234     }
235
236   ldemul_after_parse ();
237
238
239   if (config.map_filename)
240     {
241       if (strcmp (config.map_filename, "-") == 0)
242         {
243           config.map_file = stdout;
244         }
245       else
246         {
247           config.map_file = fopen (config.map_filename, FOPEN_WT);
248           if (config.map_file == (FILE *) NULL)
249             {
250               einfo ("%P%F: cannot open map file %s: %E\n",
251                      config.map_filename);
252             }
253         }
254     }
255
256
257   lang_process ();
258
259   /* Print error messages for any missing symbols, for any warning
260      symbols, and possibly multiple definitions */
261
262
263   if (config.text_read_only)
264     {
265       /* Look for a text section and mark the readonly attribute in it */
266       asection *found = bfd_get_section_by_name (output_bfd, ".text");
267
268       if (found != (asection *) NULL)
269         {
270           found->flags |= SEC_READONLY;
271         }
272     }
273
274   if (link_info.relocateable)
275     output_bfd->flags &= ~EXEC_P;
276   else
277     output_bfd->flags |= EXEC_P;
278
279   ldwrite ();
280
281   /* Even if we're producing relocateable output, some non-fatal errors should
282      be reported in the exit status.  (What non-fatal errors, if any, do we
283      want to ignore for relocateable output?)  */
284
285   if (config.make_executable == false && force_make_executable == false)
286     {
287       if (trace_files == true)
288         {
289           einfo ("%P: link errors found, deleting executable `%s'\n",
290                  output_filename);
291         }
292
293       if (output_bfd->iostream)
294         fclose ((FILE *) (output_bfd->iostream));
295
296       unlink (output_filename);
297       xexit (1);
298     }
299   else
300     {
301       if (! bfd_close (output_bfd))
302         einfo ("%F%B: final close failed: %E\n", output_bfd);
303     }
304
305   if (config.stats)
306     {
307       extern char **environ;
308       char *lim = (char *) sbrk (0);
309       long run_time = get_run_time () - start_time;
310
311       fprintf (stderr, "%s: total time in link: %ld.%06ld\n",
312                program_name, run_time / 1000000, run_time % 1000000);
313       fprintf (stderr, "%s: data size %ld\n", program_name,
314                (long) (lim - (char *) &environ));
315     }
316
317   /* Prevent remove_output from doing anything, after a successful link.  */
318   output_filename = NULL;
319
320   xexit (0);
321   return 0;
322 }
323
324 /* We need to find any explicitly given emulation in order to initialize the
325    state that's needed by the lex&yacc argument parser (parse_args).  */
326
327 static char *
328 get_emulation (argc, argv)
329      int argc;
330      char **argv;
331 {
332   char *emulation;
333   int i;
334
335   emulation = (char *) getenv (EMULATION_ENVIRON);
336   if (emulation == NULL)
337     emulation = DEFAULT_EMULATION;
338
339   for (i = 1; i < argc; i++)
340     {
341       if (!strncmp (argv[i], "-m", 2))
342         {
343           if (argv[i][2] == '\0')
344             {
345               /* -m EMUL */
346               if (i < argc - 1)
347                 {
348                   emulation = argv[i + 1];
349                   i++;
350                 }
351               else
352                 {
353                   einfo("%P%F: missing argument to -m\n");
354                 }
355             }
356           else if (strcmp (argv[i], "-mips1") == 0
357                    || strcmp (argv[i], "-mips2") == 0
358                    || strcmp (argv[i], "-mips3") == 0)
359             {
360               /* FIXME: The arguments -mips1, -mips2 and -mips3 are
361                  passed to the linker by some MIPS compilers.  They
362                  generally tell the linker to use a slightly different
363                  library path.  Perhaps someday these should be
364                  implemented as emulations; until then, we just ignore
365                  the arguments and hope that nobody ever creates
366                  emulations named ips1, ips2 or ips3.  */
367             }
368           else
369             {
370               /* -mEMUL */
371               emulation = &argv[i][2];
372             }
373         }
374     }
375
376   return emulation;
377 }
378
379 /* If directory DIR contains an "ldscripts" subdirectory,
380    add DIR to the library search path and return true,
381    else return false.  */
382
383 static boolean
384 check_for_scripts_dir (dir)
385      char *dir;
386 {
387   size_t dirlen;
388   char *buf;
389   struct stat s;
390   boolean res;
391
392   dirlen = strlen (dir);
393   /* sizeof counts the terminating NUL.  */
394   buf = (char *) xmalloc (dirlen + sizeof("/ldscripts"));
395   sprintf (buf, "%s/ldscripts", dir);
396
397   res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode);
398   free (buf);
399   if (res)
400     ldfile_add_library_path (dir);
401   return res;
402 }
403
404 /* Set the default directory for finding script files.
405    Libraries will be searched for here too, but that's ok.
406    We look for the "ldscripts" directory in:
407
408    SCRIPTDIR (passed from Makefile)
409    the dir where this program is (for using it from the build tree)
410    the dir where this program is/../lib (for installing the tool suite elsewhere) */
411
412 static void
413 set_scripts_dir ()
414 {
415   char *end, *dir;
416   size_t dirlen;
417
418   if (check_for_scripts_dir (SCRIPTDIR))
419     return;                     /* We've been installed normally.  */
420
421   /* Look for "ldscripts" in the dir where our binary is.  */
422   end = strrchr (program_name, '/');
423   if (end)
424     {
425       dirlen = end - program_name;
426       /* Make a copy of program_name in dir.
427          Leave room for later "/../lib".  */
428       dir = (char *) xmalloc (dirlen + 8);
429       strncpy (dir, program_name, dirlen);
430       dir[dirlen] = '\0';
431     }
432   else
433     {
434       dirlen = 1;
435       dir = (char *) xmalloc (dirlen + 8);
436       strcpy (dir, ".");
437     }
438
439   if (check_for_scripts_dir (dir))
440     return;                     /* Don't free dir.  */
441
442   /* Look for "ldscripts" in <the dir where our binary is>/../lib.  */
443   strcpy (dir + dirlen, "/../lib");
444   if (check_for_scripts_dir (dir))
445     return;
446
447   free (dir);                   /* Well, we tried.  */
448 }
449
450 void
451 add_ysym (name)
452      const char *name;
453 {
454   if (link_info.notice_hash == (struct bfd_hash_table *) NULL)
455     {
456       link_info.notice_hash = ((struct bfd_hash_table *)
457                                xmalloc (sizeof (struct bfd_hash_table)));
458       if (! bfd_hash_table_init_n (link_info.notice_hash,
459                                    bfd_hash_newfunc,
460                                    61))
461         einfo ("%P%F: bfd_hash_table_init failed: %E\n");
462     }      
463
464   if (bfd_hash_lookup (link_info.notice_hash, name, true, true)
465       == (struct bfd_hash_entry *) NULL)
466     einfo ("%P%F: bfd_hash_lookup failed: %E\n");
467 }
468
469 /* Handle the -retain-symbols-file option.  */
470
471 void
472 add_keepsyms_file (filename)
473      const char *filename;
474 {
475   FILE *file;
476   char *buf;
477   size_t bufsize;
478   int c;
479
480   if (link_info.strip == strip_some)
481     einfo ("%X%P: error: duplicate retain-symbols-file\n");
482
483   file = fopen (filename, "r");
484   if (file == (FILE *) NULL)
485     {
486       bfd_set_error (bfd_error_system_call);
487       einfo ("%X%P: %s: %E", filename);
488       return;
489     }
490
491   link_info.keep_hash = ((struct bfd_hash_table *)
492                          xmalloc (sizeof (struct bfd_hash_table)));
493   if (! bfd_hash_table_init (link_info.keep_hash, bfd_hash_newfunc))
494     einfo ("%P%F: bfd_hash_table_init failed: %E\n");
495
496   bufsize = 100;
497   buf = (char *) xmalloc (bufsize);
498
499   c = getc (file);
500   while (c != EOF)
501     {
502       while (isspace (c))
503         c = getc (file);
504
505       if (c != EOF)
506         {
507           size_t len = 0;
508
509           while (! isspace (c) && c != EOF)
510             {
511               buf[len] = c;
512               ++len;
513               if (len >= bufsize)
514                 {
515                   bufsize *= 2;
516                   buf = xrealloc (buf, bufsize);
517                 }
518               c = getc (file);
519             }
520
521           buf[len] = '\0';
522
523           if (bfd_hash_lookup (link_info.keep_hash, buf, true, true)
524               == (struct bfd_hash_entry *) NULL)
525             einfo ("%P%F: bfd_hash_lookup for insertion failed: %E");
526         }
527     }
528
529   if (link_info.strip != strip_none)
530     einfo ("%P: `-retain-symbols-file' overrides `-s' and `-S'\n");
531
532   link_info.strip = strip_some;
533 }
534 \f
535 /* Callbacks from the BFD linker routines.  */
536
537 /* This is called when BFD has decided to include an archive member in
538    a link.  */
539
540 /*ARGSUSED*/
541 static boolean
542 add_archive_element (info, abfd, name)
543      struct bfd_link_info *info;
544      bfd *abfd;
545      const char *name;
546 {
547   lang_input_statement_type *input;
548
549   input = ((lang_input_statement_type *)
550            xmalloc ((bfd_size_type) sizeof (lang_input_statement_type)));
551   input->filename = abfd->filename;
552   input->local_sym_name = abfd->filename;
553   input->the_bfd = abfd;
554   input->asymbols = NULL;
555   input->subfiles = NULL;
556   input->next = NULL;
557   input->just_syms_flag = false;
558   input->loaded = false;
559   input->chain = NULL;
560
561   /* FIXME: This is wrong.  It should point to an entry for the
562      archive itself.  However, it doesn't seem to matter.  */
563   input->superfile = NULL;
564
565   /* FIXME: The following fields are not set: header.next,
566      header.type, closed, passive_position, symbol_count, total_size,
567      next_real_file, is_archive, search_dirs_flag, target, real,
568      common_section, common_output_section, complained.  This bit of
569      code is from the old decode_library_subfile function.  I don't
570      know whether any of those fields matters.  */
571
572   ldlang_add_file (input);
573
574   if (config.map_file != (FILE *) NULL)
575     minfo ("%s needed due to %T\n", abfd->filename, name);
576
577   if (trace_files || trace_file_tries)
578     info_msg ("%I\n", input);
579
580   return true;
581 }
582
583 /* This is called when BFD has discovered a symbol which is defined
584    multiple times.  */
585
586 /*ARGSUSED*/
587 static boolean
588 multiple_definition (info, name, obfd, osec, oval, nbfd, nsec, nval)
589      struct bfd_link_info *info;
590      const char *name;
591      bfd *obfd;
592      asection *osec;
593      bfd_vma oval;
594      bfd *nbfd;
595      asection *nsec;
596      bfd_vma nval;
597 {
598   einfo ("%X%C: multiple definition of `%T'\n",
599          nbfd, nsec, nval, name);
600   if (obfd != (bfd *) NULL)
601     einfo ("%C: first defined here\n", obfd, osec, oval);
602   return true;
603 }
604
605 /* This is called when there is a definition of a common symbol, or
606    when a common symbol is found for a symbol that is already defined,
607    or when two common symbols are found.  We only do something if
608    -warn-common was used.  */
609
610 /*ARGSUSED*/
611 static boolean
612 multiple_common (info, name, obfd, otype, osize, nbfd, ntype, nsize)
613      struct bfd_link_info *info;
614      const char *name;
615      bfd *obfd;
616      enum bfd_link_hash_type otype;
617      bfd_vma osize;
618      bfd *nbfd;
619      enum bfd_link_hash_type ntype;
620      bfd_vma nsize;
621 {
622   if (! config.warn_common)
623     return true;
624
625   if (ntype == bfd_link_hash_defined)
626     {
627       ASSERT (otype == bfd_link_hash_common);
628       einfo ("%B: warning: definition of `%T' overriding common\n",
629              nbfd, name);
630       einfo ("%B: warning: common is here\n", obfd);
631     }
632   else if (otype == bfd_link_hash_defined)
633     {
634       ASSERT (ntype == bfd_link_hash_common);
635       einfo ("%B: warning: common of `%T' overridden by definition\n",
636              nbfd, name);
637       einfo ("%B: warning: defined here\n", obfd);
638     }
639   else
640     {
641       ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common);
642       if (osize > nsize)
643         {
644           einfo ("%B: warning: common of `%T' overridden by larger common\n",
645                  nbfd, name);
646           einfo ("%B: warning: larger common is here\n", obfd);
647         }
648       else if (nsize > osize)
649         {
650           einfo ("%B: warning: common of `%T' overriding smaller common\n",
651                  nbfd, name);
652           einfo ("%B: warning: smaller common is here\n", obfd);
653         }
654       else
655         {
656           einfo ("%B: warning: multiple common of `%T'\n", nbfd, name);
657           einfo ("%B: warning: previous common is here\n", obfd);
658         }
659     }
660
661   return true;
662 }
663
664 /* This is called when BFD has discovered a set element.  H is the
665    entry in the linker hash table for the set.  SECTION and VALUE
666    represent a value which should be added to the set.  */
667
668 /*ARGSUSED*/
669 static boolean
670 add_to_set (info, h, reloc, abfd, section, value)
671      struct bfd_link_info *info;
672      struct bfd_link_hash_entry *h;
673      bfd_reloc_code_real_type reloc;
674      bfd *abfd;
675      asection *section;
676      bfd_vma value;
677 {
678   if (! config.build_constructors)
679     return true;
680
681   ldctor_add_set_entry (h, reloc, section, value);
682
683   if (h->type == bfd_link_hash_new)
684     {
685       h->type = bfd_link_hash_undefined;
686       h->u.undef.abfd = abfd;
687       /* We don't call bfd_link_add_undef to add this to the list of
688          undefined symbols because we are going to define it
689          ourselves.  */
690     }
691
692   return true;
693 }
694
695 /* This is called when BFD has discovered a constructor.  This is only
696    called for some object file formats--those which do not handle
697    constructors in some more clever fashion.  This is similar to
698    adding an element to a set, but less general.  */
699
700 static boolean
701 constructor_callback (info, constructor, name, abfd, section, value)
702      struct bfd_link_info *info;
703      boolean constructor;
704      const char *name;
705      bfd *abfd;
706      asection *section;
707      bfd_vma value;
708 {
709   char *set_name;
710   char *s;
711   struct bfd_link_hash_entry *h;
712
713   if (! config.build_constructors)
714     return true;
715
716   /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
717      useful error message.  */
718   if (bfd_reloc_type_lookup (output_bfd, BFD_RELOC_CTOR) == NULL)
719     einfo ("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported");
720
721   set_name = (char *) alloca (1 + sizeof "__CTOR_LIST__");
722   s = set_name;
723   if (bfd_get_symbol_leading_char (abfd) != '\0')
724     *s++ = bfd_get_symbol_leading_char (abfd);
725   if (constructor)
726     strcpy (s, "__CTOR_LIST__");
727   else
728     strcpy (s, "__DTOR_LIST__");
729
730   if (config.map_file != (FILE *) NULL)
731     fprintf (config.map_file,
732              "Adding %s to constructor/destructor set %s\n", name, set_name);
733
734   h = bfd_link_hash_lookup (info->hash, set_name, true, true, true);
735   if (h == (struct bfd_link_hash_entry *) NULL)
736     einfo ("%P%F: bfd_link_hash_lookup failed: %E");
737   if (h->type == bfd_link_hash_new)
738     {
739       h->type = bfd_link_hash_undefined;
740       h->u.undef.abfd = abfd;
741       /* We don't call bfd_link_add_undef to add this to the list of
742          undefined symbols because we are going to define it
743          ourselves.  */
744     }
745
746   ldctor_add_set_entry (h, BFD_RELOC_CTOR, section, value);
747   return true;
748 }
749
750 /* This is called when there is a reference to a warning symbol.  */
751
752 /*ARGSUSED*/
753 static boolean
754 warning_callback (info, warning)
755      struct bfd_link_info *info;
756      const char *warning;
757 {
758   einfo ("%P: %s\n", warning);
759   return true;
760 }
761
762 /* This is called when an undefined symbol is found.  */
763
764 /*ARGSUSED*/
765 static boolean
766 undefined_symbol (info, name, abfd, section, address)
767      struct bfd_link_info *info;
768      const char *name;
769      bfd *abfd;
770      asection *section;
771      bfd_vma address;
772 {
773   static char *error_name;
774   static unsigned int error_count;
775
776 #define MAX_ERRORS_IN_A_ROW 5
777
778   /* We never print more than a reasonable number of errors in a row
779      for a single symbol.  */
780   if (error_name != (char *) NULL
781       && strcmp (name, error_name) == 0)
782     ++error_count;
783   else
784     {
785       error_count = 0;
786       if (error_name != (char *) NULL)
787         free (error_name);
788       error_name = buystring (name);
789     }
790
791   if (error_count < MAX_ERRORS_IN_A_ROW)
792     einfo ("%X%C: undefined reference to `%T'\n",
793            abfd, section, address, name);
794   else if (error_count == MAX_ERRORS_IN_A_ROW)
795     einfo ("%C: more undefined references to `%T' follow\n",
796            abfd, section, address, name);
797
798   return true;
799 }
800
801 /* This is called when a reloc overflows.  */
802
803 /*ARGSUSED*/
804 static boolean
805 reloc_overflow (info, name, reloc_name, addend, abfd, section, address)
806      struct bfd_link_info *info;
807      const char *name;
808      const char *reloc_name;
809      bfd_vma addend;
810      bfd *abfd;
811      asection *section;
812      bfd_vma address;
813 {
814   if (abfd == (bfd *) NULL)
815     einfo ("%P%X: generated");
816   else
817     einfo ("%X%C:", abfd, section, address);
818   einfo (" relocation truncated to fit: %s %T", reloc_name, name);
819   if (addend != 0)
820     einfo ("+%v", addend);
821   einfo ("\n");
822   return true;
823 }
824
825 /* This is called when a dangerous relocation is made.  */
826
827 /*ARGSUSED*/
828 static boolean
829 reloc_dangerous (info, message, abfd, section, address)
830      struct bfd_link_info *info;
831      const char *message;
832      bfd *abfd;
833      asection *section;
834      bfd_vma address;
835 {
836   if (abfd == (bfd *) NULL)
837     einfo ("%P%X: generated");
838   else
839     einfo ("%X%C:", abfd, section, address);
840   einfo ("dangerous relocation: %s\n", message);
841   return true;
842 }
843
844 /* This is called when a reloc is being generated attached to a symbol
845    that is not being output.  */
846
847 /*ARGSUSED*/
848 static boolean
849 unattached_reloc (info, name, abfd, section, address)
850      struct bfd_link_info *info;
851      const char *name;
852      bfd *abfd;
853      asection *section;
854      bfd_vma address;
855 {
856   if (abfd == (bfd *) NULL)
857     einfo ("%P%X: generated");
858   else
859     einfo ("%X%C:", abfd, section, address);
860   einfo (" reloc refers to symbol `%T' which is not being output\n", name);
861   return true;
862 }
863
864 /* This is called when a symbol in notice_hash is found.  Symbols are
865    put in notice_hash using the -y option.  */
866
867 /*ARGSUSED*/
868 static boolean
869 notice_ysym (info, name, abfd, section, value)
870      struct bfd_link_info *info;
871      const char *name;
872      bfd *abfd;
873      asection *section;
874      bfd_vma value;
875 {
876   einfo ("%B: %s %s\n", abfd,
877          section != &bfd_und_section ? "definition of" : "reference to",
878          name);
879   return true;
880 }
This page took 0.071166 seconds and 4 git commands to generate.