diff options
author | Alan Modra <amodra@gmail.com> | 2004-03-22 22:58:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-03-22 22:58:04 +0000 |
commit | b9cf773d1a267941d84772b54847c931f11bdec5 (patch) | |
tree | 47c492c9d707c7965e3593ce067dbe0fbcf9a96a /include/bfdlink.h | |
parent | 8e645ae742d75eb41ecaea60b3d097b69f126838 (diff) | |
download | gdb-b9cf773d1a267941d84772b54847c931f11bdec5.zip gdb-b9cf773d1a267941d84772b54847c931f11bdec5.tar.gz gdb-b9cf773d1a267941d84772b54847c931f11bdec5.tar.bz2 |
include/
PR 51.
* bfdlink.h (struct bfd_link_info): Add wrap_char.
bfd/
PR 51.
* linker.c (bfd_wrapped_link_hash_lookup): Handle info->wrap_char.
ld/
PR 51.
* emultempl/ppc64elf.em (ppc_create_output_section_statements): Set
link_info.wrap_char.
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h index 96c9886..cc2043e 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -1,6 +1,6 @@ /* bfdlink.h -- header file for BFD link routines - Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003 - Free Software Foundation, Inc. + Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, + 2004 Free Software Foundation, Inc. Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support. This file is part of BFD, the Binary File Descriptor library. @@ -323,6 +323,11 @@ struct bfd_link_info whether to include an object from an archive. */ enum bfd_link_common_skip_ar_aymbols common_skip_ar_aymbols; + /* Char that may appear as the first char of a symbol, but should be + skipped (like symbol_leading_char) when looking up symbols in + wrap_hash. Used by PowerPC Linux for 'dot' symbols. */ + char wrap_char; + /* Function callbacks. */ const struct bfd_link_callbacks *callbacks; |