From ad247e3c7de719151c02516afc9c682a32a181cc Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 10 Dec 1999 01:41:22 +0000 Subject: Change AR for ELF so that common symbols are not included in archive map. Change LD for ELF so that archive elements whoes archive map contains a reference to a common symbol will get linkled in. Add new field to bfd_target structure and initialise it for all bfd targets. --- bfd/archive.c | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'bfd/archive.c') diff --git a/bfd/archive.c b/bfd/archive.c index 19293af..3390a1c 100644 --- a/bfd/archive.c +++ b/bfd/archive.c @@ -1804,16 +1804,19 @@ _bfd_compute_and_write_armap (arch, elength) { flagword flags = (syms[src_count])->flags; asection *sec = syms[src_count]->section; + size_t namelen; + struct orl *new_map; - if ((flags & BSF_GLOBAL || - flags & BSF_WEAK || - flags & BSF_INDIRECT || - bfd_is_com_section (sec)) - && ! bfd_is_und_section (sec)) + if (bfd_is_und_section (sec)) + continue; + else if (bfd_is_com_section (sec)) { - size_t namelen; - struct orl *new_map; - + if (! bfd_allow_commons_in_armap (arch)) + continue; + } + else if ((flags & (BSF_GLOBAL | BSF_WEAK | BSF_INDIRECT)) == 0) + continue; + /* This symbol will go into the archive header */ if (orl_count == orl_max) { @@ -1842,7 +1845,6 @@ _bfd_compute_and_write_armap (arch, elength) stridx += namelen + 1; ++orl_count; - } } } -- cgit v1.1