diff options
author | Alan Modra <amodra@bigpond.net.au> | 2008-06-06 06:02:00 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2008-06-06 06:02:00 +0000 |
commit | b9252067313278718e9d24f4f59f9384b81f638e (patch) | |
tree | 7bd766b40e9523ed17bf337b27e6c5bd159a13f9 /include | |
parent | af819b7021ae815c8d32c6767419ff7569884dfe (diff) | |
download | gdb-b9252067313278718e9d24f4f59f9384b81f638e.tar.gz |
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')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/bfdlink.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 9b0140cffda..4e399f39e58 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2008-06-06 Alan Modra <amodra@bigpond.net.au> + + * bfdlink.h (struct bfd_link_info): Add "path_separator". + 2008-04-10 Andreas Krebbel <krebbel1@de.ibm.com> * dis-asm.h (print_s390_disassembler_options): diff --git a/include/bfdlink.h b/include/bfdlink.h index bcd4b4fc3e6..e6833102839 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; |