]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* Main program of GNU linker. |
e8e7cf2a | 2 | Copyright (C) 1991-2025 Free Software Foundation, Inc. |
252b5132 RH |
3 | Written by Steve Chamberlain steve@cygnus.com |
4 | ||
f96b4a7b | 5 | This file is part of the GNU Binutils. |
252b5132 | 6 | |
f96b4a7b | 7 | This program is free software; you can redistribute it and/or modify |
2fa9fc65 | 8 | it under the terms of the GNU General Public License as published by |
f96b4a7b NC |
9 | the Free Software Foundation; either version 3 of the License, or |
10 | (at your option) any later version. | |
252b5132 | 11 | |
f96b4a7b | 12 | This program is distributed in the hope that it will be useful, |
2fa9fc65 NC |
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. | |
252b5132 | 16 | |
2fa9fc65 | 17 | You should have received a copy of the GNU General Public License |
f96b4a7b NC |
18 | along with this program; if not, write to the Free Software |
19 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
20 | MA 02110-1301, USA. */ | |
252b5132 | 21 | |
252b5132 | 22 | #include "sysdep.h" |
3db64b00 | 23 | #include "bfd.h" |
c4fce3ef | 24 | #include "bfdver.h" |
3882b010 | 25 | #include "safe-ctype.h" |
252b5132 | 26 | #include "libiberty.h" |
252b5132 | 27 | #include "bfdlink.h" |
1ff6de03 | 28 | #include "ctf-api.h" |
5af11cab | 29 | #include "filenames.h" |
cae64165 | 30 | #include "elf/common.h" |
252b5132 RH |
31 | |
32 | #include "ld.h" | |
33 | #include "ldmain.h" | |
34 | #include "ldmisc.h" | |
35 | #include "ldwrite.h" | |
252b5132 RH |
36 | #include "ldexp.h" |
37 | #include "ldlang.h" | |
df2a7313 | 38 | #include <ldgram.h> |
252b5132 RH |
39 | #include "ldlex.h" |
40 | #include "ldfile.h" | |
b71e2778 | 41 | #include "ldemul.h" |
252b5132 | 42 | #include "ldctor.h" |
0381901e | 43 | #if BFD_SUPPORTS_PLUGINS |
5d3236ee DK |
44 | #include "plugin.h" |
45 | #include "plugin-api.h" | |
0381901e | 46 | #endif /* BFD_SUPPORTS_PLUGINS */ |
252b5132 | 47 | |
0125cdf2 | 48 | /* Somewhere above, sys/stat.h got included. */ |
252b5132 RH |
49 | #if !defined(S_ISDIR) && defined(S_IFDIR) |
50 | #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) | |
51 | #endif | |
52 | ||
53 | #include <string.h> | |
54 | ||
c4fce3ef NC |
55 | #if defined (HAVE_GETRUSAGE) |
56 | #include <sys/resource.h> | |
57 | #endif | |
58 | ||
9c8ebd6a DJ |
59 | #ifndef TARGET_SYSTEM_ROOT |
60 | #define TARGET_SYSTEM_ROOT "" | |
61 | #endif | |
62 | ||
252b5132 RH |
63 | /* EXPORTS */ |
64 | ||
53d25da6 AM |
65 | FILE *saved_script_handle = NULL; |
66 | FILE *previous_script_handle = NULL; | |
f38a2680 | 67 | bool force_make_executable = false; |
53d25da6 | 68 | |
252b5132 RH |
69 | char *default_target; |
70 | const char *output_filename = "a.out"; | |
71 | ||
72 | /* Name this program was invoked by. */ | |
73 | char *program_name; | |
74 | ||
9c8ebd6a | 75 | /* The prefix for system library directories. */ |
e2243057 | 76 | const char *ld_sysroot; |
9c8ebd6a | 77 | |
3fe38064 | 78 | /* The canonical representation of ld_sysroot. */ |
0aa7f586 | 79 | char *ld_canon_sysroot; |
3fe38064 NC |
80 | int ld_canon_sysroot_len; |
81 | ||
e8044f35 | 82 | /* Set by -G argument, for targets like MIPS ELF. */ |
252b5132 RH |
83 | int g_switch_value = 8; |
84 | ||
85 | /* Nonzero means print names of input files as processed. */ | |
727a29ba | 86 | unsigned int trace_files; |
252b5132 | 87 | |
cd6f1cf3 | 88 | /* Nonzero means report actions taken by the linker, and describe the linker script in use. */ |
f38a2680 | 89 | bool verbose; |
252b5132 RH |
90 | |
91 | /* Nonzero means version number was printed, so exit successfully | |
92 | instead of complaining if no input files are given. */ | |
f38a2680 | 93 | bool version_printed; |
252b5132 | 94 | |
b34976b6 | 95 | /* TRUE if we should demangle symbol names. */ |
f38a2680 | 96 | bool demangling; |
252b5132 | 97 | |
6e8376fa NC |
98 | bool in_section_ordering; |
99 | ||
252b5132 RH |
100 | args_type command_line; |
101 | ||
102 | ld_config_type config; | |
103 | ||
bcaa7b3e L |
104 | sort_type sort_section; |
105 | ||
e2243057 RS |
106 | static const char *get_sysroot |
107 | (int, char **); | |
0125cdf2 | 108 | static char *get_emulation |
1579bae1 | 109 | (int, char **); |
f38a2680 | 110 | static bool add_archive_element |
5d3236ee | 111 | (struct bfd_link_info *, bfd *, const char *, bfd **); |
1a72702b | 112 | static void multiple_definition |
24f58f47 | 113 | (struct bfd_link_info *, struct bfd_link_hash_entry *, |
1579bae1 | 114 | bfd *, asection *, bfd_vma); |
1a72702b | 115 | static void multiple_common |
24f58f47 AM |
116 | (struct bfd_link_info *, struct bfd_link_hash_entry *, |
117 | bfd *, enum bfd_link_hash_type, bfd_vma); | |
1a72702b | 118 | static void add_to_set |
1579bae1 AM |
119 | (struct bfd_link_info *, struct bfd_link_hash_entry *, |
120 | bfd_reloc_code_real_type, bfd *, asection *, bfd_vma); | |
1a72702b | 121 | static void constructor_callback |
f38a2680 | 122 | (struct bfd_link_info *, bool, const char *, bfd *, |
1579bae1 | 123 | asection *, bfd_vma); |
1a72702b | 124 | static void warning_callback |
1579bae1 AM |
125 | (struct bfd_link_info *, const char *, const char *, bfd *, |
126 | asection *, bfd_vma); | |
0125cdf2 | 127 | static void warning_find_reloc |
1579bae1 | 128 | (bfd *, asection *, void *); |
1a72702b | 129 | static void undefined_symbol |
1579bae1 | 130 | (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma, |
f38a2680 | 131 | bool); |
1a72702b | 132 | static void reloc_overflow |
dfeffb9f L |
133 | (struct bfd_link_info *, struct bfd_link_hash_entry *, const char *, |
134 | const char *, bfd_vma, bfd *, asection *, bfd_vma); | |
1a72702b | 135 | static void reloc_dangerous |
1579bae1 | 136 | (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma); |
1a72702b | 137 | static void unattached_reloc |
1579bae1 | 138 | (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma); |
f38a2680 | 139 | static bool notice |
35ed3f94 | 140 | (struct bfd_link_info *, struct bfd_link_hash_entry *, |
46135103 | 141 | struct bfd_link_hash_entry *, bfd *, asection *, bfd_vma, flagword); |
0125cdf2 NC |
142 | |
143 | static struct bfd_link_callbacks link_callbacks = | |
144 | { | |
252b5132 RH |
145 | add_archive_element, |
146 | multiple_definition, | |
147 | multiple_common, | |
148 | add_to_set, | |
149 | constructor_callback, | |
150 | warning_callback, | |
151 | undefined_symbol, | |
152 | reloc_overflow, | |
153 | reloc_dangerous, | |
154 | unattached_reloc, | |
e1fffbe6 | 155 | notice, |
d2616191 | 156 | fatal, |
2889e75b | 157 | einfo, |
49fa1e15 AM |
158 | info_msg, |
159 | minfo, | |
1ff6de03 | 160 | ldlang_override_segment_assignment, |
3d16b64e NA |
161 | ldlang_ctf_acquire_strings, |
162 | NULL, | |
163 | ldlang_ctf_new_dynsym, | |
1ff6de03 | 164 | ldlang_write_ctf_late |
252b5132 RH |
165 | }; |
166 | ||
3b66a141 | 167 | static bfd_assert_handler_type default_bfd_assert_handler; |
4519d071 | 168 | static bfd_error_handler_type default_bfd_error_handler; |
3b66a141 | 169 | |
252b5132 RH |
170 | struct bfd_link_info link_info; |
171 | \f | |
f37b21b4 RM |
172 | struct dependency_file |
173 | { | |
174 | struct dependency_file *next; | |
175 | char *name; | |
176 | }; | |
177 | ||
178 | static struct dependency_file *dependency_files, *dependency_files_tail; | |
179 | ||
180 | void | |
181 | track_dependency_files (const char *filename) | |
182 | { | |
183 | struct dependency_file *dep | |
184 | = (struct dependency_file *) xmalloc (sizeof (*dep)); | |
185 | dep->name = xstrdup (filename); | |
186 | dep->next = NULL; | |
187 | if (dependency_files == NULL) | |
188 | dependency_files = dep; | |
189 | else | |
190 | dependency_files_tail->next = dep; | |
191 | dependency_files_tail = dep; | |
192 | } | |
193 | ||
194 | static void | |
195 | write_dependency_file (void) | |
196 | { | |
197 | FILE *out; | |
198 | struct dependency_file *dep; | |
199 | ||
200 | out = fopen (config.dependency_file, FOPEN_WT); | |
201 | if (out == NULL) | |
202 | { | |
8eba92c9 | 203 | bfd_set_error (bfd_error_system_call); |
8d97c1a5 | 204 | fatal (_("%P: cannot open dependency file %s: %E\n"), |
f37b21b4 RM |
205 | config.dependency_file); |
206 | } | |
207 | ||
208 | fprintf (out, "%s:", output_filename); | |
209 | ||
210 | for (dep = dependency_files; dep != NULL; dep = dep->next) | |
211 | fprintf (out, " \\\n %s", dep->name); | |
212 | ||
213 | fprintf (out, "\n"); | |
214 | for (dep = dependency_files; dep != NULL; dep = dep->next) | |
215 | fprintf (out, "\n%s:\n", dep->name); | |
216 | ||
217 | fclose (out); | |
218 | } | |
219 | \f | |
252b5132 | 220 | static void |
498cd2a0 | 221 | ld_cleanup (void) |
252b5132 | 222 | { |
1f5e6267 AM |
223 | bfd *ibfd, *inext; |
224 | if (link_info.output_bfd) | |
225 | bfd_close_all_done (link_info.output_bfd); | |
226 | for (ibfd = link_info.input_bfds; ibfd; ibfd = inext) | |
227 | { | |
228 | inext = ibfd->link.next; | |
229 | bfd_close_all_done (ibfd); | |
230 | } | |
0381901e | 231 | #if BFD_SUPPORTS_PLUGINS |
c4fce3ef NC |
232 | /* Note - we do not call ld_plugin_start (PHASE_PLUGINS) here as this |
233 | function is only called when the linker is exiting - ie after any | |
234 | stats may have been reported, and potentially in the middle of a | |
235 | phase where we have already started recording plugin stats. */ | |
498cd2a0 AM |
236 | plugin_call_cleanup (); |
237 | #endif | |
238 | if (output_filename && delete_output_file_on_failure) | |
239 | unlink_if_ordinary (output_filename); | |
252b5132 RH |
240 | } |
241 | ||
4519d071 | 242 | /* Hook to notice BFD assertions. */ |
3b66a141 HPN |
243 | |
244 | static void | |
245 | ld_bfd_assert_handler (const char *fmt, const char *bfdver, | |
246 | const char *file, int line) | |
247 | { | |
f38a2680 | 248 | config.make_executable = false; |
4519d071 AM |
249 | (*default_bfd_assert_handler) (fmt, bfdver, file, line); |
250 | } | |
251 | ||
252 | /* Hook the bfd error/warning handler for --fatal-warnings. */ | |
253 | ||
254 | static void | |
255 | ld_bfd_error_handler (const char *fmt, va_list ap) | |
256 | { | |
257 | if (config.fatal_warnings) | |
f38a2680 | 258 | config.make_executable = false; |
4519d071 | 259 | (*default_bfd_error_handler) (fmt, ap); |
3b66a141 HPN |
260 | } |
261 | ||
6e8376fa NC |
262 | static void |
263 | display_external_script (void) | |
264 | { | |
265 | if (saved_script_handle == NULL) | |
266 | return; | |
267 | ||
268 | static const int ld_bufsz = 8193; | |
269 | size_t n; | |
270 | char *buf = (char *) xmalloc (ld_bufsz); | |
271 | ||
272 | rewind (saved_script_handle); | |
273 | while ((n = fread (buf, 1, ld_bufsz - 1, saved_script_handle)) > 0) | |
274 | { | |
275 | buf[n] = 0; | |
276 | info_msg ("%s", buf); | |
277 | } | |
278 | rewind (saved_script_handle); | |
279 | free (buf); | |
280 | } | |
281 | ||
c4fce3ef NC |
282 | struct ld_phase_data |
283 | { | |
284 | const char * name; | |
285 | ||
286 | unsigned long start; | |
287 | unsigned long duration; | |
288 | ||
289 | bool started; | |
290 | bool broken; | |
291 | ||
292 | #if defined (HAVE_GETRUSAGE) | |
293 | struct rusage begin; | |
294 | struct rusage use; | |
295 | #endif | |
296 | }; | |
297 | ||
298 | static struct ld_phase_data phase_data [NUM_PHASES] = | |
299 | { | |
300 | [PHASE_ALL] = { .name = "ALL" }, | |
301 | [PHASE_CTF] = { .name = "ctf processing" }, | |
302 | [PHASE_MERGE] = { .name = "string merge" }, | |
303 | [PHASE_PARSE] = { .name = "parsing" }, | |
304 | [PHASE_PLUGINS] = { .name = "plugins" }, | |
305 | [PHASE_PROCESS] = { .name = "processing files" }, | |
306 | [PHASE_WRITE] = { .name = "write" }, | |
307 | }; | |
308 | ||
309 | void | |
310 | ld_start_phase (ld_phase phase) | |
311 | { | |
312 | struct ld_phase_data * pd = phase_data + phase; | |
313 | ||
314 | /* We record data even if config.stats_file is NULL. This allows | |
315 | us to record data about phases that start before the command line | |
316 | arguments have been parsed. ie PHASE_ALL and PHASE_PARSE. */ | |
317 | ||
318 | /* Do not overwrite the fields if we have already started recording. */ | |
319 | if (pd->started) | |
320 | { | |
321 | /* Since we do not queue phase starts and stops, if a phase is started | |
322 | multiple times there is a likelyhood that it will be stopped multiple | |
323 | times as well. This is problematic as we will only record the data | |
324 | for the first time the phase stops and ignore all of the other stops. | |
325 | ||
326 | So let the user know. Ideally real users will never actually see | |
327 | this message, and instead only developers who are adding new phase | |
328 | tracking code will ever encounter it. */ | |
329 | einfo ("%P: --stats: phase %s started twice - data may be unreliable\n", | |
330 | pd->name); | |
331 | return; | |
332 | } | |
333 | ||
334 | /* It is OK if other phases are also active at this point. | |
335 | It just means that the phases overlap or that one phase is a sub-task | |
336 | of another. Since we record resources on a per-phase basis, this | |
337 | should not matter. */ | |
338 | ||
339 | pd->started = true; | |
340 | pd->start = get_run_time (); | |
341 | ||
342 | #if defined (HAVE_GETRUSAGE) | |
343 | /* Record the resource usage at the start of the phase. */ | |
344 | struct rusage usage; | |
345 | ||
346 | if (getrusage (RUSAGE_SELF, & usage) != 0) | |
347 | /* FIXME: Complain ? */ | |
348 | return; | |
349 | ||
350 | memcpy (& pd->begin, & usage, sizeof usage); | |
351 | #endif | |
352 | } | |
353 | ||
354 | void | |
355 | ld_stop_phase (ld_phase phase) | |
356 | { | |
357 | struct ld_phase_data * pd = phase_data + phase; | |
358 | ||
359 | if (!pd->started) | |
360 | { | |
361 | /* We set the broken flag to indicate that the data | |
362 | recorded for this phase is inconsistent. */ | |
363 | pd->broken = true; | |
364 | return; | |
365 | } | |
366 | ||
367 | pd->duration += get_run_time () - pd->start; | |
368 | pd->started = false; | |
369 | ||
370 | #if defined (HAVE_GETRUSAGE) | |
371 | struct rusage usage; | |
372 | ||
373 | if (getrusage (RUSAGE_SELF, & usage) != 0) | |
374 | /* FIXME: Complain ? */ | |
375 | return; | |
376 | ||
377 | if (phase == PHASE_ALL) | |
378 | memcpy (& pd->use, & usage, sizeof usage); | |
379 | else | |
380 | { | |
381 | struct timeval t; | |
382 | ||
383 | /* For sub-phases we record the increase in specific fields. */ | |
384 | /* FIXME: Most rusage{} fields appear to be irrelevent to when considering | |
385 | linker resource usage. Currently we record maxrss and user and system | |
386 | cpu times. Are there any other fields that might be useful ? */ | |
387 | ||
388 | #ifndef timeradd /* Macros copied from <sys/time.h>. */ | |
389 | #define timeradd(a, b, result) \ | |
390 | do \ | |
391 | { \ | |
392 | (result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ | |
393 | (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ | |
394 | if ((result)->tv_usec >= 1000000) \ | |
395 | { \ | |
396 | ++(result)->tv_sec; \ | |
397 | (result)->tv_usec -= 1000000; \ | |
398 | } \ | |
399 | } \ | |
400 | while (0) | |
401 | #endif | |
402 | ||
403 | #ifndef timersub | |
404 | #define timersub(a, b, result) \ | |
405 | do \ | |
406 | { \ | |
407 | (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ | |
408 | (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ | |
409 | if ((result)->tv_usec < 0) \ | |
410 | { \ | |
411 | --(result)->tv_sec; \ | |
412 | (result)->tv_usec += 1000000; \ | |
413 | } \ | |
414 | } \ | |
415 | while (0) | |
416 | #endif | |
417 | ||
418 | timersub (& usage.ru_utime, & pd->begin.ru_utime, & t); | |
419 | timeradd (& pd->use.ru_utime, &t, & pd->use.ru_utime); | |
420 | ||
421 | timersub (& usage.ru_stime, & pd->begin.ru_stime, & t); | |
422 | timeradd (& pd->use.ru_stime, &t, & pd->use.ru_stime); | |
423 | ||
424 | if (pd->begin.ru_maxrss < usage.ru_maxrss) | |
425 | pd->use.ru_maxrss += usage.ru_maxrss - pd->begin.ru_maxrss; | |
c4fce3ef | 426 | } |
f3f42468 | 427 | #endif |
c4fce3ef NC |
428 | } |
429 | ||
430 | static void | |
431 | report_phases (FILE * file, time_t * start, char ** argv) | |
432 | { | |
433 | unsigned long i; | |
434 | ||
435 | if (file == NULL) | |
436 | return; | |
437 | ||
438 | /* We might be writing to stdout, so make sure | |
439 | that we do not have any pending error output. */ | |
440 | fflush (stderr); | |
441 | ||
442 | /* We do not translate "Stats" as we provide this as a key | |
443 | word that can be searched for by grep and the like. */ | |
444 | #define STATS_PREFIX "Stats: " | |
445 | ||
446 | fprintf (file, STATS_PREFIX "linker version: %s\n", BFD_VERSION_STRING); | |
447 | ||
448 | /* No \n at the end of the string as ctime() provides its own. */ | |
449 | fprintf (file, STATS_PREFIX "linker started: %s", ctime (start)); | |
450 | ||
451 | /* We include the linker command line arguments since | |
452 | they can be hard to track down by other means. */ | |
453 | if (argv != NULL) | |
454 | { | |
455 | fprintf (file, STATS_PREFIX "args: "); | |
456 | for (i = 0; argv[i] != NULL; i++) | |
457 | fprintf (file, "%s ", argv[i]); | |
458 | fprintf (file, "\n\n"); /* Blank line to separate the args from the stats. */ | |
459 | } | |
460 | ||
461 | /* All of this song and dance with the column_info struct and printf | |
462 | formatting is so that we can have a nicely formated table with regular | |
463 | column spacing, whilst allowing for the column headers to be translated, | |
464 | and coping nicely with extra long strings or numbers. */ | |
465 | struct column_info | |
466 | { | |
467 | const char * header; | |
468 | const char * sub_header; | |
469 | int width; | |
470 | int pad; | |
471 | } columns[] = | |
472 | #define COLUMNS_FIELD(HEADER,SUBHEADER) \ | |
473 | { .header = N_( HEADER ), .sub_header = N_( SUBHEADER ) }, | |
474 | { | |
475 | COLUMNS_FIELD ("phase", "name") | |
476 | COLUMNS_FIELD ("cpu time", "(microsec)") | |
477 | #if defined (HAVE_GETRUSAGE) | |
478 | /* Note: keep these columns in sync with the | |
479 | information recorded in ld_stop_phase(). */ | |
480 | COLUMNS_FIELD ("memory", "(KiB)") | |
481 | COLUMNS_FIELD ("user time", "(seconds)") | |
482 | COLUMNS_FIELD ("system time", "(seconds)") | |
483 | #endif | |
484 | }; | |
485 | ||
486 | #ifndef max | |
487 | #define max(A,B) ((A) < (B) ? (B) : (A)) | |
488 | #endif | |
489 | ||
490 | size_t maxwidth = 1; | |
491 | for (i = 0; i < NUM_PHASES; i++) | |
492 | maxwidth = max (maxwidth, strlen (phase_data[i].name)); | |
493 | ||
494 | fprintf (file, "%s", STATS_PREFIX); | |
495 | ||
496 | for (i = 0; i < ARRAY_SIZE (columns); i++) | |
497 | { | |
498 | int padding; | |
499 | ||
500 | if (i == 0) | |
501 | columns[i].width = fprintf (file, "%-*s", (int) maxwidth, columns[i].header); | |
502 | else | |
503 | columns[i].width = fprintf (file, "%s", columns[i].header); | |
504 | padding = columns[i].width % 8; | |
505 | if (padding < 4) | |
506 | padding = 4; | |
507 | columns[i].pad = fprintf (file, "%*c", padding, ' '); | |
508 | } | |
509 | ||
510 | fprintf (file, "\n"); | |
511 | ||
512 | int bias = 0; | |
513 | #define COLUMN_ENTRY(VAL, FORMAT, N) \ | |
514 | do \ | |
515 | { \ | |
516 | int l; \ | |
517 | \ | |
518 | if (N == 0) \ | |
519 | l = fprintf (file, "%-*" FORMAT, columns[N].width, VAL); \ | |
520 | else \ | |
521 | l = fprintf (file, "%*" FORMAT, columns[N].width - bias, VAL); \ | |
522 | bias = 0; \ | |
523 | if (l < columns[N].width) \ | |
524 | l = columns[N].pad; \ | |
525 | else if (l < columns[N].width + columns[N].pad) \ | |
526 | l = columns[N].pad - (l - columns[N].width); \ | |
527 | else \ | |
528 | { \ | |
529 | bias = l - (columns[N].width + columns[N].pad); \ | |
530 | l = 0; \ | |
531 | } \ | |
532 | if (l) \ | |
533 | fprintf (file, "%*c", l, ' '); \ | |
534 | } \ | |
535 | while (0) | |
536 | ||
537 | fprintf (file, "%s", STATS_PREFIX); | |
538 | ||
539 | for (i = 0; i < ARRAY_SIZE (columns); i++) | |
540 | COLUMN_ENTRY (columns[i].sub_header, "s", i); | |
541 | ||
542 | fprintf (file, "\n"); | |
543 | ||
544 | for (i = 0; i < NUM_PHASES; i++) | |
545 | { | |
546 | struct ld_phase_data * pd = phase_data + i; | |
547 | /* This should not be needed... */ | |
548 | const char * name = pd->name ? pd->name : "<unnamed>"; | |
549 | ||
550 | if (pd->broken) | |
551 | { | |
552 | fprintf (file, "%s %s: %s", | |
553 | STATS_PREFIX, name, _("WARNING: Data is unreliable!\n")); | |
554 | continue; | |
555 | } | |
556 | ||
557 | fprintf (file, "%s", STATS_PREFIX); | |
558 | ||
559 | /* Care must be taken to keep the lines below in sync with | |
560 | entries in the columns_info array. | |
561 | FIXME: There ought to be a better way to do this... */ | |
562 | COLUMN_ENTRY (name, "s", 0); | |
563 | COLUMN_ENTRY (pd->duration, "ld", 1); | |
564 | #if defined (HAVE_GETRUSAGE) | |
565 | COLUMN_ENTRY (pd->use.ru_maxrss, "ld", 2); | |
14138ca4 AM |
566 | COLUMN_ENTRY ((int64_t) pd->use.ru_utime.tv_sec, PRId64, 3); |
567 | COLUMN_ENTRY ((int64_t) pd->use.ru_stime.tv_sec, PRId64, 4); | |
c4fce3ef NC |
568 | #endif |
569 | fprintf (file, "\n"); | |
570 | } | |
571 | ||
572 | fflush (file); | |
573 | } | |
574 | ||
252b5132 | 575 | int |
1579bae1 | 576 | main (int argc, char **argv) |
252b5132 RH |
577 | { |
578 | char *emulation; | |
579 | long start_time = get_run_time (); | |
c4fce3ef | 580 | time_t start_seconds = time (NULL); |
252b5132 | 581 | |
c774eab1 | 582 | #ifdef HAVE_LC_MESSAGES |
252b5132 | 583 | setlocale (LC_MESSAGES, ""); |
3882b010 | 584 | #endif |
3882b010 | 585 | setlocale (LC_CTYPE, ""); |
252b5132 RH |
586 | bindtextdomain (PACKAGE, LOCALEDIR); |
587 | textdomain (PACKAGE); | |
588 | ||
589 | program_name = argv[0]; | |
590 | xmalloc_set_program_name (program_name); | |
591 | ||
c4fce3ef NC |
592 | /* Check the LD_STATS environment variable before parsing the command line |
593 | so that the --stats option, if used, can override the environment variable. */ | |
594 | char * stats_filename; | |
595 | if ((stats_filename = getenv ("LD_STATS")) != NULL) | |
596 | { | |
597 | if (ISPRINT (stats_filename[0])) | |
598 | config.stats_filename = stats_filename; | |
599 | else | |
600 | config.stats_filename = "-"; | |
601 | config.stats = true; | |
602 | } | |
603 | ||
604 | ld_start_phase (PHASE_ALL); | |
605 | ld_start_phase (PHASE_PARSE); | |
606 | ||
869b9d07 | 607 | expandargv (&argc, &argv); |
c4fce3ef | 608 | char ** saved_argv = dupargv (argv); |
869b9d07 | 609 | |
bf2dd8d7 | 610 | if (bfd_init () != BFD_INIT_MAGIC) |
8d97c1a5 | 611 | fatal (_("%P: fatal error: libbfd ABI mismatch\n")); |
252b5132 RH |
612 | |
613 | bfd_set_error_program_name (program_name); | |
614 | ||
3b66a141 HPN |
615 | /* We want to notice and fail on those nasty BFD assertions which are |
616 | likely to signal incorrect output being generated but otherwise may | |
617 | leave no trace. */ | |
618 | default_bfd_assert_handler = bfd_set_assert_handler (ld_bfd_assert_handler); | |
619 | ||
4519d071 AM |
620 | /* Also hook the bfd error/warning handler for --fatal-warnings. */ |
621 | default_bfd_error_handler = bfd_set_error_handler (ld_bfd_error_handler); | |
622 | ||
498cd2a0 | 623 | xatexit (ld_cleanup); |
252b5132 | 624 | |
9b854f16 L |
625 | /* Remove temporary object-only files. */ |
626 | xatexit (cmdline_remove_object_only_files); | |
627 | ||
e2243057 RS |
628 | /* Set up the sysroot directory. */ |
629 | ld_sysroot = get_sysroot (argc, argv); | |
630 | if (*ld_sysroot) | |
3074964f | 631 | ld_canon_sysroot = lrealpath (ld_sysroot); |
3fe38064 | 632 | if (ld_canon_sysroot) |
889be5db DR |
633 | { |
634 | ld_canon_sysroot_len = strlen (ld_canon_sysroot); | |
635 | ||
636 | /* is_sysrooted_pathname() relies on no trailing dirsep. */ | |
637 | if (ld_canon_sysroot_len > 0 | |
638 | && IS_DIR_SEPARATOR (ld_canon_sysroot [ld_canon_sysroot_len - 1])) | |
f37b21b4 | 639 | ld_canon_sysroot [--ld_canon_sysroot_len] = '\0'; |
889be5db | 640 | } |
3fe38064 NC |
641 | else |
642 | ld_canon_sysroot_len = -1; | |
643 | ||
252b5132 RH |
644 | /* Set the default BFD target based on the configured target. Doing |
645 | this permits the linker to be configured for a particular target, | |
646 | and linked against a shared BFD library which was configured for | |
647 | a different target. The macro TARGET is defined by Makefile. */ | |
0aa7f586 | 648 | if (!bfd_set_default_target (TARGET)) |
252b5132 RH |
649 | { |
650 | einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET); | |
651 | xexit (1); | |
652 | } | |
653 | ||
b47c4208 AM |
654 | #if YYDEBUG |
655 | { | |
656 | extern int yydebug; | |
657 | yydebug = 1; | |
658 | } | |
659 | #endif | |
660 | ||
f38a2680 | 661 | config.build_constructors = true; |
c76308d2 | 662 | config.rpath_separator = ':'; |
a854a4a7 AM |
663 | config.split_by_reloc = (unsigned) -1; |
664 | config.split_by_file = (bfd_size_type) -1; | |
f38a2680 AM |
665 | config.make_executable = true; |
666 | config.magic_demand_paged = true; | |
667 | config.text_read_only = true; | |
668 | config.print_map_discarded = true; | |
4f9d22a0 | 669 | link_info.disable_target_specific_optimizations = -1; |
3b95049e | 670 | |
f38a2680 AM |
671 | command_line.warn_mismatch = true; |
672 | command_line.warn_search_mismatch = true; | |
02b0b1aa | 673 | command_line.check_section_addresses = -1; |
bcaa7b3e | 674 | |
252b5132 RH |
675 | /* We initialize DEMANGLING based on the environment variable |
676 | COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the | |
677 | output of the linker, unless COLLECT_NO_DEMANGLE is set in the | |
678 | environment. Acting the same way here lets us provide the same | |
679 | interface by default. */ | |
680 | demangling = getenv ("COLLECT_NO_DEMANGLE") == NULL; | |
681 | ||
f38a2680 AM |
682 | link_info.allow_undefined_version = true; |
683 | link_info.keep_memory = true; | |
a8dde0a2 | 684 | link_info.max_cache_size = (bfd_size_type) -1; |
f38a2680 AM |
685 | link_info.combreloc = true; |
686 | link_info.strip_discarded = true; | |
687 | link_info.prohibit_multiple_definition_absolute = false; | |
b32632c4 | 688 | link_info.textrel_check = DEFAULT_LD_TEXTREL_CHECK; |
2760f24c RG |
689 | link_info.emit_hash = DEFAULT_EMIT_SYSV_HASH; |
690 | link_info.emit_gnu_hash = DEFAULT_EMIT_GNU_HASH; | |
a9a4c53e AM |
691 | link_info.callbacks = &link_callbacks; |
692 | link_info.input_bfds_tail = &link_info.input_bfds; | |
3dbf70a2 MM |
693 | /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init |
694 | and _fini symbols. We are compatible. */ | |
695 | link_info.init_function = "_init"; | |
696 | link_info.fini_function = "_fini"; | |
a9a4c53e | 697 | link_info.relax_pass = 1; |
889c2a67 | 698 | link_info.extern_protected_data = -1; |
aec6b87e | 699 | link_info.dynamic_undefined_weak = -1; |
6f365fda | 700 | link_info.indirect_extern_access = -1; |
e0076ab3 | 701 | link_info.pei386_auto_import = -1; |
db6751f2 | 702 | link_info.spare_dynamic_tags = 5; |
967928e9 | 703 | link_info.path_separator = ':'; |
6c3bc0f8 | 704 | #ifdef DEFAULT_FLAG_COMPRESS_DEBUG |
c3620d6d | 705 | config.compress_debug = DEFAULT_COMPRESSED_DEBUG_ALGORITHM; |
6c3bc0f8 | 706 | #endif |
6734f10a | 707 | #ifdef DEFAULT_NEW_DTAGS |
91001320 | 708 | link_info.new_dtags = DEFAULT_NEW_DTAGS; |
6734f10a | 709 | #endif |
f38a2680 | 710 | link_info.start_stop_gc = false; |
cae64165 | 711 | link_info.start_stop_visibility = STV_PROTECTED; |
24718e3b | 712 | |
252b5132 | 713 | ldfile_add_arch (""); |
252b5132 RH |
714 | emulation = get_emulation (argc, argv); |
715 | ldemul_choose_mode (emulation); | |
742aeb63 | 716 | default_target = ldemul_choose_target (argc, argv); |
9b854f16 L |
717 | lang_init (false); |
718 | ldexp_init (false); | |
252b5132 | 719 | ldemul_before_parse (); |
f38a2680 | 720 | lang_has_input_file = false; |
252b5132 RH |
721 | parse_args (argc, argv); |
722 | ||
2d643429 NC |
723 | if (config.hash_table_size != 0) |
724 | bfd_hash_set_default_size (config.hash_table_size); | |
725 | ||
c4fce3ef NC |
726 | ld_stop_phase (PHASE_PARSE); |
727 | ||
0381901e | 728 | #if BFD_SUPPORTS_PLUGINS |
c4fce3ef | 729 | ld_start_phase (PHASE_PLUGINS); |
9bbc1a67 | 730 | /* Now all the plugin arguments have been gathered, we can load them. */ |
d82184d7 | 731 | plugin_load_plugins (); |
c4fce3ef | 732 | ld_stop_phase (PHASE_PLUGINS); |
0381901e | 733 | #endif /* BFD_SUPPORTS_PLUGINS */ |
36af4a4e | 734 | |
c4fce3ef NC |
735 | ld_start_phase (PHASE_PARSE); |
736 | ||
9bbc1a67 | 737 | ldemul_set_symbols (); |
252b5132 | 738 | |
e76d66a5 L |
739 | /* If we have not already opened and parsed a linker script, |
740 | try the default script from command line first. */ | |
741 | if (saved_script_handle == NULL | |
742 | && command_line.default_script != NULL) | |
743 | { | |
744 | ldfile_open_script_file (command_line.default_script); | |
745 | parser_input = input_script; | |
746 | yyparse (); | |
747 | } | |
748 | ||
749 | /* If we have not already opened and parsed a linker script | |
750 | read the emulation's appropriate default script. */ | |
751 | if (saved_script_handle == NULL) | |
752 | { | |
753 | int isfile; | |
754 | char *s = ldemul_get_script (&isfile); | |
755 | ||
756 | if (isfile) | |
757 | ldfile_open_default_command_file (s); | |
758 | else | |
759 | { | |
760 | lex_string = s; | |
761 | lex_redirect (s, _("built in linker script"), 1); | |
762 | } | |
763 | parser_input = input_script; | |
764 | yyparse (); | |
765 | lex_string = NULL; | |
766 | } | |
252b5132 | 767 | |
cd6f1cf3 | 768 | if (verbose) |
b9a8de1e | 769 | { |
9cb61eab | 770 | if (saved_script_handle) |
6e8376fa | 771 | info_msg (_("using external linker script: %s"), processed_scripts->name); |
9cb61eab AM |
772 | else |
773 | info_msg (_("using internal linker script:")); | |
774 | info_msg ("\n==================================================\n"); | |
b9a8de1e NC |
775 | |
776 | if (saved_script_handle) | |
6e8376fa | 777 | display_external_script (); |
b9a8de1e NC |
778 | else |
779 | { | |
780 | int isfile; | |
781 | ||
b7a26f91 | 782 | info_msg (ldemul_get_script (&isfile)); |
b9a8de1e | 783 | } |
b7a26f91 | 784 | |
b9a8de1e NC |
785 | info_msg ("\n==================================================\n"); |
786 | } | |
787 | ||
6e8376fa NC |
788 | if (command_line.section_ordering_file) |
789 | { | |
790 | FILE *hold_script_handle; | |
791 | ||
792 | hold_script_handle = saved_script_handle; | |
793 | ldfile_open_command_file (command_line.section_ordering_file); | |
794 | if (verbose) | |
795 | display_external_script (); | |
796 | saved_script_handle = hold_script_handle; | |
797 | in_section_ordering = true; | |
798 | parser_input = input_section_ordering_script; | |
799 | yyparse (); | |
800 | in_section_ordering = false; | |
801 | ||
802 | } | |
803 | ||
7bdf4127 AB |
804 | if (command_line.force_group_allocation |
805 | || !bfd_link_relocatable (&link_info)) | |
f38a2680 | 806 | link_info.resolve_section_groups = true; |
7bdf4127 | 807 | else |
f38a2680 | 808 | link_info.resolve_section_groups = false; |
7bdf4127 | 809 | |
30824704 RM |
810 | if (command_line.print_output_format) |
811 | info_msg ("%s\n", lang_get_output_target ()); | |
812 | ||
252b5132 RH |
813 | lang_final (); |
814 | ||
61e2488c JT |
815 | /* If the only command line argument has been -v or --version or --verbose |
816 | then ignore any input files provided by linker scripts and exit now. | |
817 | We do not want to create an output file when the linker is just invoked | |
818 | to provide version information. */ | |
819 | if (argc == 2 && version_printed) | |
820 | xexit (0); | |
821 | ||
a4819f54 | 822 | if (link_info.inhibit_common_definition && !bfd_link_dll (&link_info)) |
8d97c1a5 | 823 | fatal (_("%P: --no-define-common may not be used without -shared\n")); |
a4819f54 | 824 | |
b34976b6 | 825 | if (!lang_has_input_file) |
252b5132 | 826 | { |
30824704 | 827 | if (version_printed || command_line.print_output_format) |
252b5132 | 828 | xexit (0); |
624c610d | 829 | output_unknown_cmdline_warnings (); |
8d97c1a5 | 830 | fatal (_("%P: no input files\n")); |
252b5132 RH |
831 | } |
832 | ||
5c87f94b | 833 | if (verbose) |
0125cdf2 | 834 | info_msg (_("%P: mode %s\n"), emulation); |
252b5132 RH |
835 | |
836 | ldemul_after_parse (); | |
837 | ||
3eb33b88 L |
838 | output_unknown_cmdline_warnings (); |
839 | ||
252b5132 RH |
840 | if (config.map_filename) |
841 | { | |
842 | if (strcmp (config.map_filename, "-") == 0) | |
843 | { | |
844 | config.map_file = stdout; | |
845 | } | |
846 | else | |
847 | { | |
848 | config.map_file = fopen (config.map_filename, FOPEN_WT); | |
849 | if (config.map_file == (FILE *) NULL) | |
850 | { | |
851 | bfd_set_error (bfd_error_system_call); | |
8d97c1a5 | 852 | einfo (_("%P: cannot open map file %s: %E\n"), |
252b5132 RH |
853 | config.map_filename); |
854 | } | |
855 | } | |
f38a2680 | 856 | link_info.has_map_file = true; |
252b5132 RH |
857 | } |
858 | ||
c4fce3ef NC |
859 | if (config.stats_filename != NULL) |
860 | { | |
861 | if (config.map_filename != NULL | |
862 | && strcmp (config.stats_filename, config.map_filename) == 0) | |
863 | config.stats_file = NULL; | |
864 | else if (strcmp (config.stats_filename, "-") == 0) | |
865 | config.stats_file = stdout; | |
866 | else | |
867 | { | |
868 | if (config.stats_filename[0] == '+') | |
869 | config.stats_file = fopen (config.stats_filename + 1, "a"); | |
870 | else | |
871 | config.stats_file = fopen (config.stats_filename, "w"); | |
872 | ||
873 | if (config.stats_file == NULL) | |
874 | einfo ("%P: Warning: failed to open resource record file: %s\n", | |
875 | config.stats_filename); | |
876 | } | |
877 | } | |
878 | ||
879 | ld_stop_phase (PHASE_PARSE); | |
880 | ||
881 | ld_start_phase (PHASE_PROCESS); | |
252b5132 | 882 | lang_process (); |
c4fce3ef | 883 | ld_stop_phase (PHASE_PROCESS); |
252b5132 RH |
884 | |
885 | /* Print error messages for any missing symbols, for any warning | |
6d5e62f8 | 886 | symbols, and possibly multiple definitions. */ |
0e1862bb | 887 | if (bfd_link_relocatable (&link_info)) |
f13a99db | 888 | link_info.output_bfd->flags &= ~EXEC_P; |
252b5132 | 889 | else |
f13a99db | 890 | link_info.output_bfd->flags |= EXEC_P; |
252b5132 | 891 | |
c3620d6d AM |
892 | flagword flags = 0; |
893 | switch (config.compress_debug) | |
0ce398f1 | 894 | { |
c3620d6d AM |
895 | case COMPRESS_DEBUG_GNU_ZLIB: |
896 | flags = BFD_COMPRESS; | |
897 | break; | |
898 | case COMPRESS_DEBUG_GABI_ZLIB: | |
899 | flags = BFD_COMPRESS | BFD_COMPRESS_GABI; | |
900 | break; | |
901 | case COMPRESS_DEBUG_ZSTD: | |
902 | flags = BFD_COMPRESS | BFD_COMPRESS_GABI | BFD_COMPRESS_ZSTD; | |
903 | break; | |
904 | default: | |
905 | break; | |
0ce398f1 | 906 | } |
c3620d6d AM |
907 | link_info.output_bfd->flags |
908 | |= flags & bfd_applicable_file_flags (link_info.output_bfd); | |
0ce398f1 | 909 | |
c4fce3ef NC |
910 | |
911 | ld_start_phase (PHASE_WRITE); | |
252b5132 | 912 | ldwrite (); |
c4fce3ef NC |
913 | ld_stop_phase (PHASE_WRITE); |
914 | ||
252b5132 RH |
915 | |
916 | if (config.map_file != NULL) | |
917 | lang_map (); | |
918 | if (command_line.cref) | |
919 | output_cref (config.map_file != NULL ? config.map_file : stdout); | |
920 | if (nocrossref_list != NULL) | |
921 | check_nocrossrefs (); | |
3604cb1f TG |
922 | if (command_line.print_memory_usage) |
923 | lang_print_memory_usage (); | |
edf84efc NC |
924 | #if 0 |
925 | { | |
0aa7f586 | 926 | struct bfd_link_hash_entry *h; |
252b5132 | 927 | |
edf84efc NC |
928 | h = bfd_link_hash_lookup (link_info.hash, "__image_base__", 0,0,1); |
929 | fprintf (stderr, "lookup = %p val %lx\n", h, h ? h->u.def.value : 1); | |
930 | } | |
931 | #endif | |
9b854f16 | 932 | ldexp_finish (false); |
750877ba L |
933 | lang_finish (); |
934 | ||
f37b21b4 RM |
935 | if (config.dependency_file != NULL) |
936 | write_dependency_file (); | |
937 | ||
1049f94e | 938 | /* Even if we're producing relocatable output, some non-fatal errors should |
252b5132 | 939 | be reported in the exit status. (What non-fatal errors, if any, do we |
1049f94e | 940 | want to ignore for relocatable output?) */ |
b34976b6 | 941 | if (!config.make_executable && !force_make_executable) |
252b5132 | 942 | { |
5c87f94b | 943 | if (verbose) |
0125cdf2 NC |
944 | einfo (_("%P: link errors found, deleting executable `%s'\n"), |
945 | output_filename); | |
252b5132 | 946 | |
4309cbf2 | 947 | /* The file will be removed by ld_cleanup. */ |
252b5132 RH |
948 | xexit (1); |
949 | } | |
950 | else | |
951 | { | |
1f5e6267 AM |
952 | bfd *obfd = link_info.output_bfd; |
953 | link_info.output_bfd = NULL; | |
954 | if (!bfd_close (obfd)) | |
8d97c1a5 | 955 | fatal (_("%P: %s: final close failed: %E\n"), output_filename); |
252b5132 | 956 | |
9b854f16 L |
957 | link_info.output_bfd = NULL; |
958 | ||
252b5132 | 959 | /* If the --force-exe-suffix is enabled, and we're making an |
6d5e62f8 KH |
960 | executable file and it doesn't end in .exe, copy it to one |
961 | which does. */ | |
0e1862bb L |
962 | if (!bfd_link_relocatable (&link_info) |
963 | && command_line.force_exe_suffix) | |
252b5132 RH |
964 | { |
965 | int len = strlen (output_filename); | |
0125cdf2 | 966 | |
6d5e62f8 | 967 | if (len < 4 |
252b5132 RH |
968 | || (strcasecmp (output_filename + len - 4, ".exe") != 0 |
969 | && strcasecmp (output_filename + len - 4, ".dll") != 0)) | |
970 | { | |
971 | FILE *src; | |
972 | FILE *dst; | |
973 | const int bsize = 4096; | |
1e9cc1c2 | 974 | char *buf = (char *) xmalloc (bsize); |
252b5132 | 975 | int l; |
1e9cc1c2 | 976 | char *dst_name = (char *) xmalloc (len + 5); |
0125cdf2 | 977 | |
252b5132 RH |
978 | strcpy (dst_name, output_filename); |
979 | strcat (dst_name, ".exe"); | |
980 | src = fopen (output_filename, FOPEN_RB); | |
981 | dst = fopen (dst_name, FOPEN_WB); | |
982 | ||
983 | if (!src) | |
8d97c1a5 | 984 | fatal (_("%P: unable to open for source of copy `%s'\n"), |
1579bae1 | 985 | output_filename); |
252b5132 | 986 | if (!dst) |
8d97c1a5 | 987 | fatal (_("%P: unable to open for destination of copy `%s'\n"), |
1579bae1 | 988 | dst_name); |
252b5132 RH |
989 | while ((l = fread (buf, 1, bsize, src)) > 0) |
990 | { | |
991 | int done = fwrite (buf, 1, l, dst); | |
0125cdf2 | 992 | |
252b5132 | 993 | if (done != l) |
df5f2391 | 994 | einfo (_("%P: error writing file `%s'\n"), dst_name); |
252b5132 | 995 | } |
0125cdf2 | 996 | |
252b5132 RH |
997 | fclose (src); |
998 | if (fclose (dst) == EOF) | |
df5f2391 | 999 | einfo (_("%P: error closing file `%s'\n"), dst_name); |
252b5132 RH |
1000 | free (dst_name); |
1001 | free (buf); | |
1002 | } | |
1003 | } | |
1004 | } | |
1005 | ||
9b854f16 L |
1006 | if (config.emit_gnu_object_only) |
1007 | cmdline_emit_object_only_section (); | |
1008 | ||
c4fce3ef NC |
1009 | ld_stop_phase (PHASE_ALL); |
1010 | ||
252b5132 RH |
1011 | if (config.stats) |
1012 | { | |
c4fce3ef NC |
1013 | report_phases (config.map_file, & start_seconds, saved_argv); |
1014 | ||
1015 | if (config.stats_filename) | |
1016 | { | |
1017 | report_phases (config.stats_file, & start_seconds, saved_argv); | |
1018 | ||
1019 | if (config.stats_file != stdout && config.stats_file != stderr) | |
1020 | { | |
1021 | fclose (config.stats_file); | |
1022 | config.stats_file = NULL; | |
1023 | } | |
1024 | } | |
1025 | else /* This is for backwards compatibility. */ | |
1026 | { | |
1027 | long run_time = get_run_time () - start_time; | |
252b5132 | 1028 | |
c4fce3ef NC |
1029 | fflush (stdout); |
1030 | fprintf (stderr, _("%s: total time in link: %ld.%06ld\n"), | |
1031 | program_name, run_time / 1000000, run_time % 1000000); | |
1032 | fflush (stderr); | |
1033 | } | |
252b5132 RH |
1034 | } |
1035 | ||
1f5e6267 | 1036 | /* Prevent ld_cleanup from deleting the output file. */ |
252b5132 RH |
1037 | output_filename = NULL; |
1038 | ||
c4fce3ef NC |
1039 | freeargv (saved_argv); |
1040 | ||
252b5132 RH |
1041 | xexit (0); |
1042 | return 0; | |
1043 | } | |
1044 | ||
e2243057 RS |
1045 | /* If the configured sysroot is relocatable, try relocating it based on |
1046 | default prefix FROM. Return the relocated directory if it exists, | |
1047 | otherwise return null. */ | |
1048 | ||
1049 | static char * | |
1050 | get_relative_sysroot (const char *from ATTRIBUTE_UNUSED) | |
1051 | { | |
1052 | #ifdef TARGET_SYSTEM_ROOT_RELOCATABLE | |
1053 | char *path; | |
1054 | struct stat s; | |
1055 | ||
1056 | path = make_relative_prefix (program_name, from, TARGET_SYSTEM_ROOT); | |
1057 | if (path) | |
1058 | { | |
1059 | if (stat (path, &s) == 0 && S_ISDIR (s.st_mode)) | |
1060 | return path; | |
1061 | free (path); | |
1062 | } | |
1063 | #endif | |
1064 | return 0; | |
1065 | } | |
1066 | ||
1067 | /* Return the sysroot directory. Return "" if no sysroot is being used. */ | |
1068 | ||
1069 | static const char * | |
1070 | get_sysroot (int argc, char **argv) | |
1071 | { | |
1072 | int i; | |
55d5520a | 1073 | const char *path = NULL; |
e2243057 RS |
1074 | |
1075 | for (i = 1; i < argc; i++) | |
08dedd66 | 1076 | if (startswith (argv[i], "--sysroot=")) |
55d5520a | 1077 | path = argv[i] + strlen ("--sysroot="); |
e2243057 | 1078 | |
55d5520a AM |
1079 | if (!path) |
1080 | path = get_relative_sysroot (BINDIR); | |
e2243057 | 1081 | |
55d5520a AM |
1082 | if (!path) |
1083 | path = get_relative_sysroot (TOOLBINDIR); | |
1084 | ||
1085 | if (!path) | |
1086 | path = TARGET_SYSTEM_ROOT; | |
1087 | ||
1088 | if (IS_DIR_SEPARATOR (*path) && path[1] == 0) | |
1089 | path = ""; | |
e2243057 | 1090 | |
55d5520a | 1091 | return path; |
e2243057 RS |
1092 | } |
1093 | ||
252b5132 RH |
1094 | /* We need to find any explicitly given emulation in order to initialize the |
1095 | state that's needed by the lex&yacc argument parser (parse_args). */ | |
1096 | ||
1097 | static char * | |
1579bae1 | 1098 | get_emulation (int argc, char **argv) |
252b5132 RH |
1099 | { |
1100 | char *emulation; | |
1101 | int i; | |
1102 | ||
1103 | emulation = getenv (EMULATION_ENVIRON); | |
1104 | if (emulation == NULL) | |
1105 | emulation = DEFAULT_EMULATION; | |
1106 | ||
1107 | for (i = 1; i < argc; i++) | |
1108 | { | |
08dedd66 | 1109 | if (startswith (argv[i], "-m")) |
252b5132 RH |
1110 | { |
1111 | if (argv[i][2] == '\0') | |
1112 | { | |
1113 | /* -m EMUL */ | |
1114 | if (i < argc - 1) | |
1115 | { | |
1116 | emulation = argv[i + 1]; | |
1117 | i++; | |
1118 | } | |
1119 | else | |
8d97c1a5 | 1120 | fatal (_("%P: missing argument to -m\n")); |
252b5132 RH |
1121 | } |
1122 | else if (strcmp (argv[i], "-mips1") == 0 | |
1123 | || strcmp (argv[i], "-mips2") == 0 | |
1124 | || strcmp (argv[i], "-mips3") == 0 | |
d1cf510e | 1125 | || strcmp (argv[i], "-mips4") == 0 |
6f33421c CD |
1126 | || strcmp (argv[i], "-mips5") == 0 |
1127 | || strcmp (argv[i], "-mips32") == 0 | |
1128 | || strcmp (argv[i], "-mips32r2") == 0 | |
c0f6e439 MJ |
1129 | || strcmp (argv[i], "-mips32r3") == 0 |
1130 | || strcmp (argv[i], "-mips32r5") == 0 | |
7361da2c | 1131 | || strcmp (argv[i], "-mips32r6") == 0 |
5f74bc13 | 1132 | || strcmp (argv[i], "-mips64") == 0 |
7361da2c | 1133 | || strcmp (argv[i], "-mips64r2") == 0 |
c0f6e439 MJ |
1134 | || strcmp (argv[i], "-mips64r3") == 0 |
1135 | || strcmp (argv[i], "-mips64r5") == 0 | |
7361da2c | 1136 | || strcmp (argv[i], "-mips64r6") == 0) |
252b5132 | 1137 | { |
31d677f9 | 1138 | /* FIXME: The arguments -mips1, -mips2, -mips3, etc. are |
252b5132 RH |
1139 | passed to the linker by some MIPS compilers. They |
1140 | generally tell the linker to use a slightly different | |
1141 | library path. Perhaps someday these should be | |
1142 | implemented as emulations; until then, we just ignore | |
1143 | the arguments and hope that nobody ever creates | |
1144 | emulations named ips1, ips2 or ips3. */ | |
1145 | } | |
1146 | else if (strcmp (argv[i], "-m486") == 0) | |
1147 | { | |
1148 | /* FIXME: The argument -m486 is passed to the linker on | |
1149 | some Linux systems. Hope that nobody creates an | |
1150 | emulation named 486. */ | |
1151 | } | |
1152 | else | |
1153 | { | |
1154 | /* -mEMUL */ | |
1155 | emulation = &argv[i][2]; | |
1156 | } | |
1157 | } | |
1158 | } | |
1159 | ||
1160 | return emulation; | |
1161 | } | |
1162 | ||
252b5132 | 1163 | void |
1579bae1 | 1164 | add_ysym (const char *name) |
252b5132 | 1165 | { |
1579bae1 | 1166 | if (link_info.notice_hash == NULL) |
252b5132 | 1167 | { |
0aa7f586 AM |
1168 | link_info.notice_hash |
1169 | = (struct bfd_hash_table *) xmalloc (sizeof (struct bfd_hash_table)); | |
66eb6687 AM |
1170 | if (!bfd_hash_table_init_n (link_info.notice_hash, |
1171 | bfd_hash_newfunc, | |
1172 | sizeof (struct bfd_hash_entry), | |
1173 | 61)) | |
8d97c1a5 | 1174 | fatal (_("%P: bfd_hash_table_init failed: %E\n")); |
6d5e62f8 | 1175 | } |
252b5132 | 1176 | |
f38a2680 | 1177 | if (bfd_hash_lookup (link_info.notice_hash, name, true, true) == NULL) |
8d97c1a5 | 1178 | fatal (_("%P: bfd_hash_lookup failed: %E\n")); |
252b5132 RH |
1179 | } |
1180 | ||
0e86e20e AM |
1181 | void |
1182 | add_ignoresym (struct bfd_link_info *info, const char *name) | |
1183 | { | |
1184 | if (info->ignore_hash == NULL) | |
1185 | { | |
1186 | info->ignore_hash = xmalloc (sizeof (struct bfd_hash_table)); | |
0aa7f586 AM |
1187 | if (!bfd_hash_table_init_n (info->ignore_hash, |
1188 | bfd_hash_newfunc, | |
1189 | sizeof (struct bfd_hash_entry), | |
1190 | 61)) | |
8d97c1a5 | 1191 | fatal (_("%P: bfd_hash_table_init failed: %E\n")); |
0e86e20e AM |
1192 | } |
1193 | ||
f38a2680 | 1194 | if (bfd_hash_lookup (info->ignore_hash, name, true, true) == NULL) |
8d97c1a5 | 1195 | fatal (_("%P: bfd_hash_lookup failed: %E\n")); |
0e86e20e AM |
1196 | } |
1197 | ||
252b5132 RH |
1198 | /* Record a symbol to be wrapped, from the --wrap option. */ |
1199 | ||
1200 | void | |
1579bae1 | 1201 | add_wrap (const char *name) |
252b5132 RH |
1202 | { |
1203 | if (link_info.wrap_hash == NULL) | |
1204 | { | |
0aa7f586 AM |
1205 | link_info.wrap_hash |
1206 | = (struct bfd_hash_table *) xmalloc (sizeof (struct bfd_hash_table)); | |
66eb6687 AM |
1207 | if (!bfd_hash_table_init_n (link_info.wrap_hash, |
1208 | bfd_hash_newfunc, | |
1209 | sizeof (struct bfd_hash_entry), | |
1210 | 61)) | |
8d97c1a5 | 1211 | fatal (_("%P: bfd_hash_table_init failed: %E\n")); |
252b5132 | 1212 | } |
0125cdf2 | 1213 | |
f38a2680 | 1214 | if (bfd_hash_lookup (link_info.wrap_hash, name, true, true) == NULL) |
8d97c1a5 | 1215 | fatal (_("%P: bfd_hash_lookup failed: %E\n")); |
252b5132 RH |
1216 | } |
1217 | ||
1218 | /* Handle the -retain-symbols-file option. */ | |
1219 | ||
1220 | void | |
1579bae1 | 1221 | add_keepsyms_file (const char *filename) |
252b5132 RH |
1222 | { |
1223 | FILE *file; | |
1224 | char *buf; | |
1225 | size_t bufsize; | |
1226 | int c; | |
1227 | ||
1228 | if (link_info.strip == strip_some) | |
1229 | einfo (_("%X%P: error: duplicate retain-symbols-file\n")); | |
1230 | ||
1231 | file = fopen (filename, "r"); | |
1579bae1 | 1232 | if (file == NULL) |
252b5132 RH |
1233 | { |
1234 | bfd_set_error (bfd_error_system_call); | |
1235 | einfo ("%X%P: %s: %E\n", filename); | |
1236 | return; | |
1237 | } | |
1238 | ||
1e9cc1c2 NC |
1239 | link_info.keep_hash = (struct bfd_hash_table *) |
1240 | xmalloc (sizeof (struct bfd_hash_table)); | |
66eb6687 AM |
1241 | if (!bfd_hash_table_init (link_info.keep_hash, bfd_hash_newfunc, |
1242 | sizeof (struct bfd_hash_entry))) | |
8d97c1a5 | 1243 | fatal (_("%P: bfd_hash_table_init failed: %E\n")); |
252b5132 RH |
1244 | |
1245 | bufsize = 100; | |
1e9cc1c2 | 1246 | buf = (char *) xmalloc (bufsize); |
252b5132 RH |
1247 | |
1248 | c = getc (file); | |
1249 | while (c != EOF) | |
1250 | { | |
3882b010 | 1251 | while (ISSPACE (c)) |
252b5132 RH |
1252 | c = getc (file); |
1253 | ||
1254 | if (c != EOF) | |
1255 | { | |
1256 | size_t len = 0; | |
1257 | ||
0aa7f586 | 1258 | while (!ISSPACE (c) && c != EOF) |
252b5132 RH |
1259 | { |
1260 | buf[len] = c; | |
1261 | ++len; | |
1262 | if (len >= bufsize) | |
1263 | { | |
1264 | bufsize *= 2; | |
1e9cc1c2 | 1265 | buf = (char *) xrealloc (buf, bufsize); |
252b5132 RH |
1266 | } |
1267 | c = getc (file); | |
1268 | } | |
1269 | ||
1270 | buf[len] = '\0'; | |
1271 | ||
f38a2680 | 1272 | if (bfd_hash_lookup (link_info.keep_hash, buf, true, true) == NULL) |
8d97c1a5 | 1273 | fatal (_("%P: bfd_hash_lookup for insertion failed: %E\n")); |
252b5132 RH |
1274 | } |
1275 | } | |
1276 | ||
1277 | if (link_info.strip != strip_none) | |
1278 | einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n")); | |
1279 | ||
5ed6aba4 | 1280 | free (buf); |
252b5132 | 1281 | link_info.strip = strip_some; |
d9313f4f | 1282 | fclose (file); |
252b5132 RH |
1283 | } |
1284 | \f | |
1285 | /* Callbacks from the BFD linker routines. */ | |
1286 | ||
1287 | /* This is called when BFD has decided to include an archive member in | |
1288 | a link. */ | |
1289 | ||
f38a2680 | 1290 | static bool |
e1fffbe6 | 1291 | add_archive_element (struct bfd_link_info *info, |
1579bae1 | 1292 | bfd *abfd, |
5d3236ee DK |
1293 | const char *name, |
1294 | bfd **subsbfd ATTRIBUTE_UNUSED) | |
252b5132 RH |
1295 | { |
1296 | lang_input_statement_type *input; | |
1fa4ec6a | 1297 | lang_input_statement_type *parent; |
5d3236ee | 1298 | lang_input_statement_type orig_input; |
252b5132 | 1299 | |
1e9cc1c2 NC |
1300 | input = (lang_input_statement_type *) |
1301 | xcalloc (1, sizeof (lang_input_statement_type)); | |
fb47deda | 1302 | input->header.type = lang_input_statement_enum; |
607b4833 AM |
1303 | input->filename = bfd_get_filename (abfd); |
1304 | input->local_sym_name = bfd_get_filename (abfd); | |
252b5132 | 1305 | input->the_bfd = abfd; |
252b5132 | 1306 | |
5d3236ee DK |
1307 | /* Save the original data for trace files/tries below, as plugins |
1308 | (if enabled) may possibly alter it to point to a replacement | |
1309 | BFD, but we still want to output the original BFD filename. */ | |
1310 | orig_input = *input; | |
0381901e | 1311 | #if BFD_SUPPORTS_PLUGINS |
bb9a951f L |
1312 | /* Don't claim a fat IR object if no IR object should be claimed. */ |
1313 | if (link_info.lto_plugin_active | |
1314 | && (!no_more_claiming | |
1315 | || bfd_get_lto_type (abfd) != lto_fat_ir_object)) | |
5d3236ee | 1316 | { |
c4fce3ef | 1317 | ld_start_phase (PHASE_PLUGINS); |
5d3236ee | 1318 | /* We must offer this archive member to the plugins to claim. */ |
35a1e5f3 | 1319 | plugin_maybe_claim (input); |
c4fce3ef NC |
1320 | ld_stop_phase (PHASE_PLUGINS); |
1321 | ||
35a1e5f3 | 1322 | if (input->flags.claimed) |
5d3236ee | 1323 | { |
b95a0a31 L |
1324 | if (no_more_claiming) |
1325 | { | |
1326 | /* Don't claim new IR symbols after all IR symbols have | |
1327 | been claimed. */ | |
5c87f94b | 1328 | if (verbose) |
6e0c75f7 | 1329 | info_msg ("%pI: no new IR symbols to claim\n", |
b95a0a31 L |
1330 | &orig_input); |
1331 | input->flags.claimed = 0; | |
f38a2680 | 1332 | return false; |
b95a0a31 | 1333 | } |
f38a2680 | 1334 | input->flags.claim_archive = true; |
35a1e5f3 | 1335 | *subsbfd = input->the_bfd; |
5d3236ee DK |
1336 | } |
1337 | } | |
9b854f16 | 1338 | else |
9b854f16 | 1339 | cmdline_check_object_only_section (input->the_bfd, false); |
9d375dfe | 1340 | #endif /* BFD_SUPPORTS_PLUGINS */ |
5d3236ee | 1341 | |
9221725d AM |
1342 | if (link_info.input_bfds_tail == &input->the_bfd->link.next |
1343 | || input->the_bfd->link.next != NULL) | |
1344 | { | |
1345 | /* We have already loaded this element, and are attempting to | |
1346 | load it again. This can happen when the archive map doesn't | |
1347 | match actual symbols defined by the element. */ | |
1348 | free (input); | |
1349 | bfd_set_error (bfd_error_malformed_archive); | |
f38a2680 | 1350 | return false; |
9221725d AM |
1351 | } |
1352 | ||
1353 | /* Set the file_chain pointer of archives to the last element loaded | |
1354 | from the archive. See ldlang.c:find_rescan_insertion. */ | |
1355 | parent = bfd_usrdata (abfd->my_archive); | |
1356 | if (parent != NULL && !parent->flags.reload) | |
1357 | parent->next = input; | |
1358 | ||
252b5132 RH |
1359 | ldlang_add_file (input); |
1360 | ||
1579bae1 | 1361 | if (config.map_file != NULL) |
252b5132 | 1362 | { |
f38a2680 | 1363 | static bool header_printed; |
252b5132 RH |
1364 | struct bfd_link_hash_entry *h; |
1365 | bfd *from; | |
1366 | int len; | |
1367 | ||
f38a2680 | 1368 | h = bfd_link_hash_lookup (info->hash, name, false, false, true); |
aa654ee8 AM |
1369 | if (h == NULL |
1370 | && info->pei386_auto_import | |
08dedd66 | 1371 | && startswith (name, "__imp_")) |
f38a2680 | 1372 | h = bfd_link_hash_lookup (info->hash, name + 6, false, false, true); |
252b5132 RH |
1373 | |
1374 | if (h == NULL) | |
1375 | from = NULL; | |
1376 | else | |
1377 | { | |
1378 | switch (h->type) | |
1379 | { | |
1380 | default: | |
1381 | from = NULL; | |
1382 | break; | |
1383 | ||
1384 | case bfd_link_hash_defined: | |
1385 | case bfd_link_hash_defweak: | |
1386 | from = h->u.def.section->owner; | |
1387 | break; | |
1388 | ||
1389 | case bfd_link_hash_undefined: | |
1390 | case bfd_link_hash_undefweak: | |
1391 | from = h->u.undef.abfd; | |
1392 | break; | |
1393 | ||
1394 | case bfd_link_hash_common: | |
1395 | from = h->u.c.p->section->owner; | |
1396 | break; | |
1397 | } | |
1398 | } | |
1399 | ||
0aa7f586 | 1400 | if (!header_printed) |
252b5132 | 1401 | { |
1273da04 | 1402 | minfo (_("Archive member included to satisfy reference by file (symbol)\n\n")); |
f38a2680 | 1403 | header_printed = true; |
252b5132 RH |
1404 | } |
1405 | ||
3860d2b4 AM |
1406 | if (abfd->my_archive == NULL |
1407 | || bfd_is_thin_archive (abfd->my_archive)) | |
252b5132 RH |
1408 | { |
1409 | minfo ("%s", bfd_get_filename (abfd)); | |
1410 | len = strlen (bfd_get_filename (abfd)); | |
1411 | } | |
1412 | else | |
1413 | { | |
3860d2b4 | 1414 | minfo ("%s(%s)", bfd_get_filename (abfd->my_archive), |
252b5132 | 1415 | bfd_get_filename (abfd)); |
3860d2b4 | 1416 | len = (strlen (bfd_get_filename (abfd->my_archive)) |
252b5132 RH |
1417 | + strlen (bfd_get_filename (abfd)) |
1418 | + 2); | |
1419 | } | |
1420 | ||
1421 | if (len >= 29) | |
1422 | { | |
1423 | print_nl (); | |
1424 | len = 0; | |
1425 | } | |
6b9bd54c | 1426 | print_spaces (30 - len); |
252b5132 RH |
1427 | |
1428 | if (from != NULL) | |
871b3ab2 | 1429 | minfo ("%pB ", from); |
252b5132 | 1430 | if (h != NULL) |
c1c8c1ef | 1431 | minfo ("(%pT)\n", h->root.string); |
252b5132 RH |
1432 | else |
1433 | minfo ("(%s)\n", name); | |
1434 | } | |
1435 | ||
727a29ba AM |
1436 | if (verbose |
1437 | || trace_files > 1 | |
1438 | || (trace_files && bfd_is_thin_archive (orig_input.the_bfd->my_archive))) | |
c1c8c1ef | 1439 | info_msg ("%pI\n", &orig_input); |
f38a2680 | 1440 | return true; |
252b5132 RH |
1441 | } |
1442 | ||
1443 | /* This is called when BFD has discovered a symbol which is defined | |
1444 | multiple times. */ | |
1445 | ||
1a72702b | 1446 | static void |
24f58f47 AM |
1447 | multiple_definition (struct bfd_link_info *info, |
1448 | struct bfd_link_hash_entry *h, | |
1579bae1 AM |
1449 | bfd *nbfd, |
1450 | asection *nsec, | |
1451 | bfd_vma nval) | |
252b5132 | 1452 | { |
24f58f47 AM |
1453 | const char *name; |
1454 | bfd *obfd; | |
1455 | asection *osec; | |
1456 | bfd_vma oval; | |
1457 | ||
1458 | if (info->allow_multiple_definition) | |
1a72702b | 1459 | return; |
24f58f47 AM |
1460 | |
1461 | switch (h->type) | |
1462 | { | |
1463 | case bfd_link_hash_defined: | |
1464 | osec = h->u.def.section; | |
1465 | oval = h->u.def.value; | |
1466 | obfd = h->u.def.section->owner; | |
1467 | break; | |
1468 | case bfd_link_hash_indirect: | |
1469 | osec = bfd_ind_section_ptr; | |
1470 | oval = 0; | |
1471 | obfd = NULL; | |
1472 | break; | |
1473 | default: | |
1474 | abort (); | |
1475 | } | |
1476 | ||
1477 | /* Ignore a redefinition of an absolute symbol to the | |
1478 | same value; it's harmless. */ | |
1479 | if (h->type == bfd_link_hash_defined | |
1480 | && bfd_is_abs_section (osec) | |
1481 | && bfd_is_abs_section (nsec) | |
1482 | && nval == oval) | |
1a72702b | 1483 | return; |
24f58f47 | 1484 | |
252b5132 RH |
1485 | /* If either section has the output_section field set to |
1486 | bfd_abs_section_ptr, it means that the section is being | |
1487 | discarded, and this is not really a multiple definition at all. | |
9e2278f5 AM |
1488 | FIXME: It would be cleaner to somehow ignore symbols defined in |
1489 | sections which are being discarded. */ | |
3f0a5f17 ME |
1490 | if (!info->prohibit_multiple_definition_absolute |
1491 | && ((osec->output_section != NULL | |
1492 | && ! bfd_is_abs_section (osec) | |
1493 | && bfd_is_abs_section (osec->output_section)) | |
1494 | || (nsec->output_section != NULL | |
1495 | && !bfd_is_abs_section (nsec) | |
1496 | && bfd_is_abs_section (nsec->output_section)))) | |
1a72702b | 1497 | return; |
252b5132 | 1498 | |
24f58f47 AM |
1499 | name = h->root.string; |
1500 | if (nbfd == NULL) | |
1501 | { | |
1502 | nbfd = obfd; | |
1503 | nsec = osec; | |
1504 | nval = oval; | |
1505 | obfd = NULL; | |
1506 | } | |
70993db3 AM |
1507 | if (info->warn_multiple_definition) |
1508 | einfo (_("%P: %C: warning: multiple definition of `%pT'"), | |
1509 | nbfd, nsec, nval, name); | |
1510 | else | |
1511 | einfo (_("%X%P: %C: multiple definition of `%pT'"), | |
1512 | nbfd, nsec, nval, name); | |
1579bae1 | 1513 | if (obfd != NULL) |
df5f2391 AM |
1514 | einfo (_("; %D: first defined here"), obfd, osec, oval); |
1515 | einfo ("\n"); | |
9b14b192 | 1516 | |
13761a11 | 1517 | if (RELAXATION_ENABLED_BY_USER) |
9b14b192 | 1518 | { |
df5f2391 | 1519 | einfo (_("%P: disabling relaxation; it will not work with multiple definitions\n")); |
13761a11 | 1520 | DISABLE_RELAXATION; |
9b14b192 | 1521 | } |
252b5132 RH |
1522 | } |
1523 | ||
1524 | /* This is called when there is a definition of a common symbol, or | |
1525 | when a common symbol is found for a symbol that is already defined, | |
1526 | or when two common symbols are found. We only do something if | |
1527 | -warn-common was used. */ | |
1528 | ||
1a72702b | 1529 | static void |
1579bae1 | 1530 | multiple_common (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
24f58f47 | 1531 | struct bfd_link_hash_entry *h, |
1579bae1 AM |
1532 | bfd *nbfd, |
1533 | enum bfd_link_hash_type ntype, | |
1534 | bfd_vma nsize) | |
252b5132 | 1535 | { |
24f58f47 AM |
1536 | const char *name; |
1537 | bfd *obfd; | |
1538 | enum bfd_link_hash_type otype; | |
1539 | bfd_vma osize; | |
1540 | ||
1541 | if (!config.warn_common) | |
1a72702b | 1542 | return; |
252b5132 | 1543 | |
24f58f47 AM |
1544 | name = h->root.string; |
1545 | otype = h->type; | |
1546 | if (otype == bfd_link_hash_common) | |
1547 | { | |
1548 | obfd = h->u.c.p->section->owner; | |
1549 | osize = h->u.c.size; | |
1550 | } | |
1551 | else if (otype == bfd_link_hash_defined | |
1552 | || otype == bfd_link_hash_defweak) | |
1553 | { | |
1554 | obfd = h->u.def.section->owner; | |
1555 | osize = 0; | |
1556 | } | |
1557 | else | |
1558 | { | |
1559 | /* FIXME: It would nice if we could report the BFD which defined | |
1560 | an indirect symbol, but we don't have anywhere to store the | |
1561 | information. */ | |
1562 | obfd = NULL; | |
1563 | osize = 0; | |
1564 | } | |
1565 | ||
252b5132 RH |
1566 | if (ntype == bfd_link_hash_defined |
1567 | || ntype == bfd_link_hash_defweak | |
1568 | || ntype == bfd_link_hash_indirect) | |
1569 | { | |
1570 | ASSERT (otype == bfd_link_hash_common); | |
252b5132 | 1571 | if (obfd != NULL) |
df5f2391 AM |
1572 | einfo (_("%P: %pB: warning: definition of `%pT' overriding common" |
1573 | " from %pB\n"), | |
1574 | nbfd, name, obfd); | |
1575 | else | |
1576 | einfo (_("%P: %pB: warning: definition of `%pT' overriding common\n"), | |
1577 | nbfd, name); | |
252b5132 RH |
1578 | } |
1579 | else if (otype == bfd_link_hash_defined | |
1580 | || otype == bfd_link_hash_defweak | |
1581 | || otype == bfd_link_hash_indirect) | |
1582 | { | |
1583 | ASSERT (ntype == bfd_link_hash_common); | |
252b5132 | 1584 | if (obfd != NULL) |
df5f2391 AM |
1585 | einfo (_("%P: %pB: warning: common of `%pT' overridden by definition" |
1586 | " from %pB\n"), | |
1587 | nbfd, name, obfd); | |
1588 | else | |
1589 | einfo (_("%P: %pB: warning: common of `%pT' overridden by definition\n"), | |
1590 | nbfd, name); | |
252b5132 RH |
1591 | } |
1592 | else | |
1593 | { | |
1594 | ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common); | |
1595 | if (osize > nsize) | |
1596 | { | |
252b5132 | 1597 | if (obfd != NULL) |
df5f2391 AM |
1598 | einfo (_("%P: %pB: warning: common of `%pT' overridden" |
1599 | " by larger common from %pB\n"), | |
1600 | nbfd, name, obfd); | |
1601 | else | |
1602 | einfo (_("%P: %pB: warning: common of `%pT' overridden" | |
1603 | " by larger common\n"), | |
1604 | nbfd, name); | |
252b5132 RH |
1605 | } |
1606 | else if (nsize > osize) | |
1607 | { | |
252b5132 | 1608 | if (obfd != NULL) |
df5f2391 AM |
1609 | einfo (_("%P: %pB: warning: common of `%pT' overriding" |
1610 | " smaller common from %pB\n"), | |
1611 | nbfd, name, obfd); | |
1612 | else | |
1613 | einfo (_("%P: %pB: warning: common of `%pT' overriding" | |
1614 | " smaller common\n"), | |
1615 | nbfd, name); | |
252b5132 RH |
1616 | } |
1617 | else | |
1618 | { | |
252b5132 | 1619 | if (obfd != NULL) |
df5f2391 AM |
1620 | einfo (_("%P: %pB and %pB: warning: multiple common of `%pT'\n"), |
1621 | nbfd, obfd, name); | |
1622 | else | |
1623 | einfo (_("%P: %pB: warning: multiple common of `%pT'\n"), | |
1624 | nbfd, name); | |
252b5132 RH |
1625 | } |
1626 | } | |
252b5132 RH |
1627 | } |
1628 | ||
1629 | /* This is called when BFD has discovered a set element. H is the | |
1630 | entry in the linker hash table for the set. SECTION and VALUE | |
1631 | represent a value which should be added to the set. */ | |
1632 | ||
1a72702b | 1633 | static void |
1579bae1 AM |
1634 | add_to_set (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
1635 | struct bfd_link_hash_entry *h, | |
1636 | bfd_reloc_code_real_type reloc, | |
1637 | bfd *abfd, | |
1638 | asection *section, | |
1639 | bfd_vma value) | |
252b5132 RH |
1640 | { |
1641 | if (config.warn_constructors) | |
1642 | einfo (_("%P: warning: global constructor %s used\n"), | |
1643 | h->root.string); | |
1644 | ||
0aa7f586 | 1645 | if (!config.build_constructors) |
1a72702b | 1646 | return; |
252b5132 | 1647 | |
1579bae1 | 1648 | ldctor_add_set_entry (h, reloc, NULL, section, value); |
252b5132 RH |
1649 | |
1650 | if (h->type == bfd_link_hash_new) | |
1651 | { | |
1652 | h->type = bfd_link_hash_undefined; | |
1653 | h->u.undef.abfd = abfd; | |
1654 | /* We don't call bfd_link_add_undef to add this to the list of | |
1655 | undefined symbols because we are going to define it | |
1656 | ourselves. */ | |
1657 | } | |
252b5132 RH |
1658 | } |
1659 | ||
1660 | /* This is called when BFD has discovered a constructor. This is only | |
1661 | called for some object file formats--those which do not handle | |
1662 | constructors in some more clever fashion. This is similar to | |
1663 | adding an element to a set, but less general. */ | |
1664 | ||
1a72702b | 1665 | static void |
1579bae1 | 1666 | constructor_callback (struct bfd_link_info *info, |
f38a2680 | 1667 | bool constructor, |
1579bae1 AM |
1668 | const char *name, |
1669 | bfd *abfd, | |
1670 | asection *section, | |
1671 | bfd_vma value) | |
252b5132 RH |
1672 | { |
1673 | char *s; | |
1674 | struct bfd_link_hash_entry *h; | |
1675 | char set_name[1 + sizeof "__CTOR_LIST__"]; | |
1676 | ||
1677 | if (config.warn_constructors) | |
1678 | einfo (_("%P: warning: global constructor %s used\n"), name); | |
1679 | ||
0aa7f586 | 1680 | if (!config.build_constructors) |
1a72702b | 1681 | return; |
252b5132 RH |
1682 | |
1683 | /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a | |
1684 | useful error message. */ | |
0e86e20e | 1685 | if (bfd_reloc_type_lookup (info->output_bfd, BFD_RELOC_CTOR) == NULL |
0e1862bb | 1686 | && (bfd_link_relocatable (info) |
252b5132 | 1687 | || bfd_reloc_type_lookup (abfd, BFD_RELOC_CTOR) == NULL)) |
8d97c1a5 | 1688 | fatal (_("%P: BFD backend error: BFD_RELOC_CTOR unsupported\n")); |
252b5132 RH |
1689 | |
1690 | s = set_name; | |
1691 | if (bfd_get_symbol_leading_char (abfd) != '\0') | |
1692 | *s++ = bfd_get_symbol_leading_char (abfd); | |
1693 | if (constructor) | |
1694 | strcpy (s, "__CTOR_LIST__"); | |
1695 | else | |
1696 | strcpy (s, "__DTOR_LIST__"); | |
1697 | ||
f38a2680 | 1698 | h = bfd_link_hash_lookup (info->hash, set_name, true, true, true); |
252b5132 | 1699 | if (h == (struct bfd_link_hash_entry *) NULL) |
8d97c1a5 | 1700 | fatal (_("%P: bfd_link_hash_lookup failed: %E\n")); |
252b5132 RH |
1701 | if (h->type == bfd_link_hash_new) |
1702 | { | |
1703 | h->type = bfd_link_hash_undefined; | |
1704 | h->u.undef.abfd = abfd; | |
1705 | /* We don't call bfd_link_add_undef to add this to the list of | |
1706 | undefined symbols because we are going to define it | |
1707 | ourselves. */ | |
1708 | } | |
1709 | ||
1710 | ldctor_add_set_entry (h, BFD_RELOC_CTOR, name, section, value); | |
252b5132 RH |
1711 | } |
1712 | ||
1713 | /* A structure used by warning_callback to pass information through | |
1714 | bfd_map_over_sections. */ | |
1715 | ||
0125cdf2 NC |
1716 | struct warning_callback_info |
1717 | { | |
f38a2680 | 1718 | bool found; |
252b5132 RH |
1719 | const char *warning; |
1720 | const char *symbol; | |
1721 | asymbol **asymbols; | |
1722 | }; | |
1723 | ||
4c6d802e L |
1724 | /* Look through the relocs to see if we can find a plausible address |
1725 | for SYMBOL in ABFD. Return TRUE if found. Otherwise return FALSE. */ | |
1726 | ||
f38a2680 | 1727 | static bool |
4c6d802e L |
1728 | symbol_warning (const char *warning, const char *symbol, bfd *abfd) |
1729 | { | |
1730 | struct warning_callback_info cinfo; | |
1731 | ||
1732 | if (!bfd_generic_link_read_symbols (abfd)) | |
8d97c1a5 | 1733 | fatal (_("%P: %pB: could not read symbols: %E\n"), abfd); |
4c6d802e | 1734 | |
f38a2680 | 1735 | cinfo.found = false; |
4c6d802e L |
1736 | cinfo.warning = warning; |
1737 | cinfo.symbol = symbol; | |
1738 | cinfo.asymbols = bfd_get_outsymbols (abfd); | |
1739 | bfd_map_over_sections (abfd, warning_find_reloc, &cinfo); | |
1740 | return cinfo.found; | |
1741 | } | |
1742 | ||
252b5132 RH |
1743 | /* This is called when there is a reference to a warning symbol. */ |
1744 | ||
1a72702b | 1745 | static void |
1579bae1 AM |
1746 | warning_callback (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
1747 | const char *warning, | |
1748 | const char *symbol, | |
1749 | bfd *abfd, | |
1750 | asection *section, | |
1751 | bfd_vma address) | |
252b5132 RH |
1752 | { |
1753 | /* This is a hack to support warn_multiple_gp. FIXME: This should | |
1754 | have a cleaner interface, but what? */ | |
0aa7f586 | 1755 | if (!config.warn_multiple_gp |
252b5132 | 1756 | && strcmp (warning, "using multiple gp values") == 0) |
1a72702b | 1757 | return; |
252b5132 RH |
1758 | |
1759 | if (section != NULL) | |
df5f2391 | 1760 | einfo ("%P: %C: %s%s\n", abfd, section, address, _("warning: "), warning); |
252b5132 | 1761 | else if (abfd == NULL) |
300475fe | 1762 | einfo ("%P: %s%s\n", _("warning: "), warning); |
252b5132 | 1763 | else if (symbol == NULL) |
df5f2391 | 1764 | einfo ("%P: %pB: %s%s\n", abfd, _("warning: "), warning); |
0aa7f586 | 1765 | else if (!symbol_warning (warning, symbol, abfd)) |
252b5132 | 1766 | { |
4c6d802e L |
1767 | bfd *b; |
1768 | /* Search all input files for a reference to SYMBOL. */ | |
c72f2fb2 | 1769 | for (b = info->input_bfds; b; b = b->link.next) |
4c6d802e | 1770 | if (b != abfd && symbol_warning (warning, symbol, b)) |
1a72702b | 1771 | return; |
df5f2391 | 1772 | einfo ("%P: %pB: %s%s\n", abfd, _("warning: "), warning); |
252b5132 | 1773 | } |
252b5132 RH |
1774 | } |
1775 | ||
1776 | /* This is called by warning_callback for each section. It checks the | |
1777 | relocs of the section to see if it can find a reference to the | |
1778 | symbol which triggered the warning. If it can, it uses the reloc | |
1779 | to give an error message with a file and line number. */ | |
1780 | ||
1781 | static void | |
1579bae1 | 1782 | warning_find_reloc (bfd *abfd, asection *sec, void *iarg) |
252b5132 | 1783 | { |
1e9cc1c2 | 1784 | struct warning_callback_info *info = (struct warning_callback_info *) iarg; |
252b5132 RH |
1785 | long relsize; |
1786 | arelent **relpp; | |
1787 | long relcount; | |
1788 | arelent **p, **pend; | |
1789 | ||
1790 | if (info->found) | |
1791 | return; | |
1792 | ||
1793 | relsize = bfd_get_reloc_upper_bound (abfd, sec); | |
1794 | if (relsize < 0) | |
8d97c1a5 | 1795 | fatal (_("%P: %pB: could not read relocs: %E\n"), abfd); |
252b5132 RH |
1796 | if (relsize == 0) |
1797 | return; | |
1798 | ||
1e9cc1c2 | 1799 | relpp = (arelent **) xmalloc (relsize); |
252b5132 RH |
1800 | relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols); |
1801 | if (relcount < 0) | |
8d97c1a5 | 1802 | fatal (_("%P: %pB: could not read relocs: %E\n"), abfd); |
252b5132 RH |
1803 | |
1804 | p = relpp; | |
1805 | pend = p + relcount; | |
1806 | for (; p < pend && *p != NULL; p++) | |
1807 | { | |
1808 | arelent *q = *p; | |
1809 | ||
1810 | if (q->sym_ptr_ptr != NULL | |
1811 | && *q->sym_ptr_ptr != NULL | |
1812 | && strcmp (bfd_asymbol_name (*q->sym_ptr_ptr), info->symbol) == 0) | |
1813 | { | |
1814 | /* We found a reloc for the symbol we are looking for. */ | |
02d2a369 | 1815 | einfo ("%P: %H: %s%s\n", abfd, sec, q->address, _("warning: "), |
300475fe | 1816 | info->warning); |
f38a2680 | 1817 | info->found = true; |
252b5132 RH |
1818 | break; |
1819 | } | |
1820 | } | |
1821 | ||
1822 | free (relpp); | |
1823 | } | |
1824 | ||
23ae20f5 NC |
1825 | #if SUPPORT_ERROR_HANDLING_SCRIPT |
1826 | char * error_handling_script = NULL; | |
1827 | #endif | |
1828 | ||
252b5132 RH |
1829 | /* This is called when an undefined symbol is found. */ |
1830 | ||
1a72702b | 1831 | static void |
0e86e20e | 1832 | undefined_symbol (struct bfd_link_info *info, |
1579bae1 AM |
1833 | const char *name, |
1834 | bfd *abfd, | |
1835 | asection *section, | |
1836 | bfd_vma address, | |
f38a2680 | 1837 | bool error) |
252b5132 RH |
1838 | { |
1839 | static char *error_name; | |
1840 | static unsigned int error_count; | |
1841 | ||
1842 | #define MAX_ERRORS_IN_A_ROW 5 | |
1843 | ||
0e86e20e | 1844 | if (info->ignore_hash != NULL |
f38a2680 | 1845 | && bfd_hash_lookup (info->ignore_hash, name, false, false) != NULL) |
1a72702b | 1846 | return; |
0e86e20e | 1847 | |
252b5132 RH |
1848 | if (config.warn_once) |
1849 | { | |
252b5132 | 1850 | /* Only warn once about a particular undefined symbol. */ |
0e86e20e | 1851 | add_ignoresym (info, name); |
252b5132 RH |
1852 | } |
1853 | ||
1854 | /* We never print more than a reasonable number of errors in a row | |
1855 | for a single symbol. */ | |
1579bae1 | 1856 | if (error_name != NULL |
252b5132 RH |
1857 | && strcmp (name, error_name) == 0) |
1858 | ++error_count; | |
1859 | else | |
1860 | { | |
1861 | error_count = 0; | |
5e2ab612 | 1862 | free (error_name); |
d1b2b2dc | 1863 | error_name = xstrdup (name); |
252b5132 RH |
1864 | } |
1865 | ||
23ae20f5 NC |
1866 | #if SUPPORT_ERROR_HANDLING_SCRIPT |
1867 | if (error_handling_script != NULL | |
1868 | && error_count < MAX_ERRORS_IN_A_ROW) | |
1869 | { | |
1870 | char * argv[4]; | |
1871 | const char * res; | |
1872 | int status, err; | |
1873 | ||
1874 | argv[0] = error_handling_script; | |
93cf38c0 | 1875 | argv[1] = "undefined-symbol"; |
23ae20f5 NC |
1876 | argv[2] = (char *) name; |
1877 | argv[3] = NULL; | |
1878 | ||
1879 | if (verbose) | |
1880 | einfo (_("%P: About to run error handling script '%s' with arguments: '%s' '%s'\n"), | |
1881 | argv[0], argv[1], argv[2]); | |
1882 | ||
1883 | res = pex_one (PEX_SEARCH, error_handling_script, argv, | |
1884 | N_("error handling script"), | |
1885 | NULL /* Send stdout to random, temp file. */, | |
1886 | NULL /* Write to stderr. */, | |
1887 | &status, &err); | |
1888 | if (res != NULL) | |
1889 | { | |
1890 | einfo (_("%P: Failed to run error handling script '%s', reason: "), | |
1891 | error_handling_script); | |
1892 | /* FIXME: We assume here that errrno == err. */ | |
1893 | perror (res); | |
1894 | } | |
1895 | /* We ignore the return status of the script and | |
1896 | carry on to issue the normal error message. */ | |
1897 | } | |
1898 | #endif /* SUPPORT_ERROR_HANDLING_SCRIPT */ | |
1899 | ||
252b5132 RH |
1900 | if (section != NULL) |
1901 | { | |
1902 | if (error_count < MAX_ERRORS_IN_A_ROW) | |
b6f29aaa | 1903 | { |
0b28295d | 1904 | if (error) |
02d2a369 | 1905 | einfo (_("%X%P: %H: undefined reference to `%pT'\n"), |
0b28295d ILT |
1906 | abfd, section, address, name); |
1907 | else | |
02d2a369 | 1908 | einfo (_("%P: %H: warning: undefined reference to `%pT'\n"), |
0b28295d | 1909 | abfd, section, address, name); |
b6f29aaa | 1910 | } |
252b5132 | 1911 | else if (error_count == MAX_ERRORS_IN_A_ROW) |
0b28295d ILT |
1912 | { |
1913 | if (error) | |
df5f2391 | 1914 | einfo (_("%X%P: %D: more undefined references to `%pT' follow\n"), |
0b28295d ILT |
1915 | abfd, section, address, name); |
1916 | else | |
df5f2391 | 1917 | einfo (_("%P: %D: warning: more undefined references to `%pT' follow\n"), |
0b28295d ILT |
1918 | abfd, section, address, name); |
1919 | } | |
1920 | else if (error) | |
1921 | einfo ("%X"); | |
252b5132 RH |
1922 | } |
1923 | else | |
1924 | { | |
1925 | if (error_count < MAX_ERRORS_IN_A_ROW) | |
b6f29aaa | 1926 | { |
0b28295d | 1927 | if (error) |
df5f2391 | 1928 | einfo (_("%X%P: %pB: undefined reference to `%pT'\n"), |
0b28295d ILT |
1929 | abfd, name); |
1930 | else | |
df5f2391 | 1931 | einfo (_("%P: %pB: warning: undefined reference to `%pT'\n"), |
0b28295d | 1932 | abfd, name); |
b6f29aaa | 1933 | } |
252b5132 | 1934 | else if (error_count == MAX_ERRORS_IN_A_ROW) |
0b28295d ILT |
1935 | { |
1936 | if (error) | |
df5f2391 | 1937 | einfo (_("%X%P: %pB: more undefined references to `%pT' follow\n"), |
0b28295d ILT |
1938 | abfd, name); |
1939 | else | |
df5f2391 | 1940 | einfo (_("%P: %pB: warning: more undefined references to `%pT' follow\n"), |
0b28295d ILT |
1941 | abfd, name); |
1942 | } | |
1943 | else if (error) | |
1944 | einfo ("%X"); | |
252b5132 | 1945 | } |
252b5132 RH |
1946 | } |
1947 | ||
8aae64e6 AO |
1948 | /* Counter to limit the number of relocation overflow error messages |
1949 | to print. Errors are printed as it is decremented. When it's | |
1950 | called and the counter is zero, a final message is printed | |
1951 | indicating more relocations were omitted. When it gets to -1, no | |
1952 | such errors are printed. If it's initially set to a value less | |
1953 | than -1, all such errors will be printed (--verbose does this). */ | |
1954 | ||
1955 | int overflow_cutoff_limit = 10; | |
1956 | ||
252b5132 RH |
1957 | /* This is called when a reloc overflows. */ |
1958 | ||
1a72702b | 1959 | static void |
0e86e20e | 1960 | reloc_overflow (struct bfd_link_info *info, |
dfeffb9f | 1961 | struct bfd_link_hash_entry *entry, |
1579bae1 AM |
1962 | const char *name, |
1963 | const char *reloc_name, | |
1964 | bfd_vma addend, | |
1965 | bfd *abfd, | |
1966 | asection *section, | |
1967 | bfd_vma address) | |
252b5132 | 1968 | { |
8aae64e6 | 1969 | if (overflow_cutoff_limit == -1) |
1a72702b | 1970 | return; |
8aae64e6 | 1971 | |
a5990ada | 1972 | einfo ("%X%H:", abfd, section, address); |
8aae64e6 AO |
1973 | |
1974 | if (overflow_cutoff_limit >= 0 | |
1975 | && overflow_cutoff_limit-- == 0) | |
1976 | { | |
1977 | einfo (_(" additional relocation overflows omitted from the output\n")); | |
1a72702b | 1978 | return; |
8aae64e6 AO |
1979 | } |
1980 | ||
dfeffb9f L |
1981 | if (entry) |
1982 | { | |
1983 | while (entry->type == bfd_link_hash_indirect | |
1984 | || entry->type == bfd_link_hash_warning) | |
1985 | entry = entry->u.i.link; | |
1986 | switch (entry->type) | |
1987 | { | |
1988 | case bfd_link_hash_undefined: | |
1989 | case bfd_link_hash_undefweak: | |
0aa7f586 | 1990 | einfo (_(" relocation truncated to fit: " |
c1c8c1ef | 1991 | "%s against undefined symbol `%pT'"), |
dfeffb9f L |
1992 | reloc_name, entry->root.string); |
1993 | break; | |
1994 | case bfd_link_hash_defined: | |
1995 | case bfd_link_hash_defweak: | |
0aa7f586 | 1996 | einfo (_(" relocation truncated to fit: " |
c1c8c1ef | 1997 | "%s against symbol `%pT' defined in %pA section in %pB"), |
dfeffb9f | 1998 | reloc_name, entry->root.string, |
a6e1b90f L |
1999 | entry->u.def.section, |
2000 | entry->u.def.section == bfd_abs_section_ptr | |
0e86e20e | 2001 | ? info->output_bfd : entry->u.def.section->owner); |
dfeffb9f L |
2002 | break; |
2003 | default: | |
2004 | abort (); | |
2005 | break; | |
2006 | } | |
2007 | } | |
2008 | else | |
c1c8c1ef | 2009 | einfo (_(" relocation truncated to fit: %s against `%pT'"), |
dfeffb9f | 2010 | reloc_name, name); |
252b5132 RH |
2011 | if (addend != 0) |
2012 | einfo ("+%v", addend); | |
2013 | einfo ("\n"); | |
252b5132 RH |
2014 | } |
2015 | ||
2016 | /* This is called when a dangerous relocation is made. */ | |
2017 | ||
1a72702b | 2018 | static void |
1579bae1 AM |
2019 | reloc_dangerous (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
2020 | const char *message, | |
2021 | bfd *abfd, | |
2022 | asection *section, | |
2023 | bfd_vma address) | |
252b5132 | 2024 | { |
a5990ada | 2025 | einfo (_("%X%H: dangerous relocation: %s\n"), |
e1fffbe6 | 2026 | abfd, section, address, message); |
252b5132 RH |
2027 | } |
2028 | ||
2029 | /* This is called when a reloc is being generated attached to a symbol | |
2030 | that is not being output. */ | |
2031 | ||
1a72702b | 2032 | static void |
1579bae1 AM |
2033 | unattached_reloc (struct bfd_link_info *info ATTRIBUTE_UNUSED, |
2034 | const char *name, | |
2035 | bfd *abfd, | |
2036 | asection *section, | |
2037 | bfd_vma address) | |
252b5132 | 2038 | { |
a5990ada | 2039 | einfo (_("%X%H: reloc refers to symbol `%pT' which is not being output\n"), |
e1fffbe6 | 2040 | abfd, section, address, name); |
252b5132 RH |
2041 | } |
2042 | ||
2043 | /* This is called if link_info.notice_all is set, or when a symbol in | |
2044 | link_info.notice_hash is found. Symbols are put in notice_hash | |
5d3236ee DK |
2045 | using the -y option, while notice_all is set if the --cref option |
2046 | has been supplied, or if there are any NOCROSSREFS sections in the | |
2047 | linker script; and if plugins are active, since they need to monitor | |
2048 | all references from non-IR files. */ | |
252b5132 | 2049 | |
f38a2680 | 2050 | static bool |
1579bae1 | 2051 | notice (struct bfd_link_info *info, |
35ed3f94 | 2052 | struct bfd_link_hash_entry *h, |
46135103 | 2053 | struct bfd_link_hash_entry *inh ATTRIBUTE_UNUSED, |
1579bae1 AM |
2054 | bfd *abfd, |
2055 | asection *section, | |
16d96b5b | 2056 | bfd_vma value, |
46135103 | 2057 | flagword flags ATTRIBUTE_UNUSED) |
252b5132 | 2058 | { |
35ed3f94 AM |
2059 | const char *name; |
2060 | ||
2061 | if (h == NULL) | |
5061a885 AM |
2062 | { |
2063 | if (command_line.cref || nocrossref_list != NULL) | |
1e9cc1c2 | 2064 | return handle_asneeded_cref (abfd, (enum notice_asneeded_action) value); |
f38a2680 | 2065 | return true; |
5061a885 AM |
2066 | } |
2067 | ||
35ed3f94 | 2068 | name = h->root.string; |
5d3236ee | 2069 | if (info->notice_hash != NULL |
f38a2680 | 2070 | && bfd_hash_lookup (info->notice_hash, name, false, false) != NULL) |
252b5132 RH |
2071 | { |
2072 | if (bfd_is_und_section (section)) | |
df5f2391 | 2073 | einfo (_("%P: %pB: reference to %s\n"), abfd, name); |
252b5132 | 2074 | else |
df5f2391 | 2075 | einfo (_("%P: %pB: definition of %s\n"), abfd, name); |
252b5132 RH |
2076 | } |
2077 | ||
2078 | if (command_line.cref || nocrossref_list != NULL) | |
2079 | add_cref (name, abfd, section, value); | |
2080 | ||
f38a2680 | 2081 | return true; |
252b5132 | 2082 | } |