diff options
author | Alan Modra <modra@gmail.com> | 2008-06-06 06:01:53 +0000 |
---|---|---|
committer | Alan Modra <modra@gmail.com> | 2008-06-06 06:01:53 +0000 |
commit | 0345ae5042baa20e940a70b7e67b0ff2a2169b11 (patch) | |
tree | aa777c9692cb90ce36f4f65ffca86268aa0b8a05 /include/bfdlink.h | |
parent | f769e691e7eb965793ab0a5602f188d111cc265c (diff) | |
download | cygnal-0345ae5042baa20e940a70b7e67b0ff2a2169b11.tar.gz cygnal-0345ae5042baa20e940a70b7e67b0ff2a2169b11.tar.bz2 cygnal-0345ae5042baa20e940a70b7e67b0ff2a2169b11.zip |
include/
* bfdlink.h (struct bfd_link_info): Add "path_separator".
bfd/
* elf32-spu.c (spu_elf_auto_overlay): Relax requirement that
file names be unique. Specify archive:path in overlay script.
ld/
* ldlang.c (name_match): New function.
(unique_section_p, walk_wild_consider_section): Use it here.
(walk_wild_section_general): And here.
(archive_path): New function.
(walk_wild): Match archive:path filespecs.
(open_input_bfds): Don't load archive:path files.
* emultempl/spuelf.em (choose_target): Set path_separator.
* emulparams/elf32_spu.sh: Add ._ea.* sections to ._ea output.
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h index bcd4b4fc3..e68331028 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -372,6 +372,9 @@ struct bfd_link_info wrap_hash. Used by PowerPC Linux for 'dot' symbols. */ char wrap_char; + /* Separator between archive and filename in linker script filespecs. */ + char path_separator; + /* Function callbacks. */ const struct bfd_link_callbacks *callbacks; |