diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-09-13 20:25:46 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-09-13 20:25:46 +0000 |
commit | 204ba9e37eb78aebc70aec88d2a55b7893166f79 (patch) | |
tree | 5e2f9d1337fcadf62732f1e0c1d87bf7b6279101 /bfd | |
parent | a3f7a777c6e5311ec053afdd70068a2a4a790609 (diff) | |
download | gdb-204ba9e37eb78aebc70aec88d2a55b7893166f79.zip gdb-204ba9e37eb78aebc70aec88d2a55b7893166f79.tar.gz gdb-204ba9e37eb78aebc70aec88d2a55b7893166f79.tar.bz2 |
* aoutx.h (NAME(aout,final_link)): Don't assume that all the input
files are a.out.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/aoutx.h | 43 |
2 files changed, 30 insertions, 18 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 4b9a159..84d7fa1 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 13 16:23:57 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + + * aoutx.h (NAME(aout,final_link)): Don't assume that all the input + files are a.out. + Tue Sep 13 11:09:39 1994 J.T. Conklin (jtc@rtl.cygnus.com) * configure.host (sparc-*-netbsd): use sparcnbsd. diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 1c716e2..c800bb7 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -698,6 +698,10 @@ NAME(aout,machine_type) (arch, machine, unknown) if (machine == 0) arch_flags = M_29K; break; + case bfd_arch_arm: + if (machine == 0) arch_flags = M_ARM; + break; + case bfd_arch_mips: switch (machine) { case 0: @@ -1767,7 +1771,7 @@ add_to_stringtab (abfd, tab, str, copy) bfd_size_type index; /* An index of 0 always means the empty string. */ - if (*str == '\0') + if (str == 0 || *str == '\0') return 0; /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx @@ -3307,23 +3311,26 @@ NAME(aout,final_link) (abfd, info, callback) } } - sz = bfd_section_size (sub, obj_textsec (sub)); - if (sz > max_contents_size) - max_contents_size = sz; - sz = bfd_section_size (sub, obj_datasec (sub)); - if (sz > max_contents_size) - max_contents_size = sz; - - sz = exec_hdr (sub)->a_trsize; - if (sz > max_relocs_size) - max_relocs_size = sz; - sz = exec_hdr (sub)->a_drsize; - if (sz > max_relocs_size) - max_relocs_size = sz; - - sz = obj_aout_external_sym_count (sub); - if (sz > max_sym_count) - max_sym_count = sz; + if (bfd_get_flavour (sub) == bfd_target_aout_flavour) + { + sz = bfd_section_size (sub, obj_textsec (sub)); + if (sz > max_contents_size) + max_contents_size = sz; + sz = bfd_section_size (sub, obj_datasec (sub)); + if (sz > max_contents_size) + max_contents_size = sz; + + sz = exec_hdr (sub)->a_trsize; + if (sz > max_relocs_size) + max_relocs_size = sz; + sz = exec_hdr (sub)->a_drsize; + if (sz > max_relocs_size) + max_relocs_size = sz; + + sz = obj_aout_external_sym_count (sub); + if (sz > max_sym_count) + max_sym_count = sz; + } } if (info->relocateable) |