diff options
author | Alan Modra <amodra@gmail.com> | 2016-12-23 23:43:54 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-12-24 00:20:03 +1030 |
commit | 6eda96bcf3a53843feb5d6d4441f0d9da7bc8a75 (patch) | |
tree | abb74ff00e70df77e9fade2357c452d69adfd5db /bfd/linker.c | |
parent | b9fc2576a13367070c741c7ea1d364a483eed0e4 (diff) | |
download | gdb-6eda96bcf3a53843feb5d6d4441f0d9da7bc8a75.zip gdb-6eda96bcf3a53843feb5d6d4441f0d9da7bc8a75.tar.gz gdb-6eda96bcf3a53843feb5d6d4441f0d9da7bc8a75.tar.bz2 |
Call target specific add_symbols function
This allows targets that have target specific code to add object
symbols to make use of the generic archive handling.
* linker.c (generic_link_check_archive_element): Call target
bfd_link_add_symbols to add element symbols.
Diffstat (limited to 'bfd/linker.c')
-rw-r--r-- | bfd/linker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/linker.c b/bfd/linker.c index 9763b84..3bee361 100644 --- a/bfd/linker.c +++ b/bfd/linker.c @@ -1064,7 +1064,7 @@ generic_link_check_archive_element (bfd *abfd, return FALSE; /* Potentially, the add_archive_element hook may have set a substitute BFD for us. */ - return generic_link_add_object_symbols (abfd, info); + return bfd_link_add_symbols (abfd, info); } /* P is a common symbol. */ |