X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=bfd%2Fbout.c;h=c230e18c0ea69818e36f5b2b4efac3786bb859b4;hb=60bcf0fa8c115b4e71d7b1372aca3efccffc9607;hp=2e2b4b21e436c9957f67ad463ae2f7b7f7a83da5;hpb=5f771d47c711c5292df87c35ac726c0ac18a3820;p=binutils-gdb.git diff --git a/bfd/bout.c b/bfd/bout.c index 2e2b4b21e43..c230e18c0ea 100644 --- a/bfd/bout.c +++ b/bfd/bout.c @@ -1047,7 +1047,8 @@ get_value (reloc, link_info, input_section) { if (! ((*link_info->callbacks->undefined_symbol) (link_info, bfd_asymbol_name (symbol), - input_section->owner, input_section, reloc->address))) + input_section->owner, input_section, reloc->address, + true))) abort (); value = 0; } @@ -1453,6 +1454,8 @@ b_out_bfd_get_relocated_section_contents (output_bfd, link_info, link_order, #define aout_32_get_section_contents_in_window \ _bfd_generic_get_section_contents_in_window +extern const bfd_target b_out_vec_little_host; + const bfd_target b_out_vec_big_host = { "b.out.big", /* name */ @@ -1490,6 +1493,8 @@ const bfd_target b_out_vec_big_host = BFD_JUMP_TABLE_LINK (b_out), BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), + & b_out_vec_little_host, + (PTR) 0, }; @@ -1531,5 +1536,7 @@ const bfd_target b_out_vec_little_host = BFD_JUMP_TABLE_LINK (b_out), BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), + & b_out_vec_big_host, + (PTR) 0 };