Update to 2.10's definition of undefined_symbol().
This commit is contained in:
parent
45de998997
commit
9af6ca142f
|
@ -4915,7 +4915,7 @@ aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
|
|||
else
|
||||
name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
|
||||
if (! ((*finfo->info->callbacks->undefined_symbol)
|
||||
(finfo->info, name, input_bfd, input_section, r_addr)))
|
||||
(finfo->info, name, input_bfd, input_section, r_addr, true)))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -5316,7 +5316,7 @@ aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
|
|||
else
|
||||
name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
|
||||
if (! ((*finfo->info->callbacks->undefined_symbol)
|
||||
(finfo->info, name, input_bfd, input_section, r_addr)))
|
||||
(finfo->info, name, input_bfd, input_section, r_addr, true)))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue