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.
This commit is contained in:
parent
6b89a541db
commit
e437499bac
|
@ -1,3 +1,8 @@
|
|||
2004-03-23 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
PR 51.
|
||||
* bfdlink.h (struct bfd_link_info): Add wrap_char.
|
||||
|
||||
2004-03-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* bfdlink.h (bfd_link_info): Correct comments for the
|
||||
|
@ -918,7 +923,7 @@ Tue Jul 22 17:59:54 1997 Ian Lance Taylor <ian@cygnus.com>
|
|||
|
||||
Fri Jun 6 13:02:33 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* remote-sim.h (sim_kill): Mark as depreciated.
|
||||
* remote-sim.h (sim_kill): Mark as deprecated.
|
||||
|
||||
Fri May 23 13:43:41 1997 Fred Fish <fnf@cygnus.com>
|
||||
|
||||
|
@ -932,7 +937,7 @@ Thu May 22 11:32:49 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
|||
Wed May 21 16:47:53 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* remote-sim.h (sim_set_profile_size): Add prototype, document as
|
||||
depreciated.
|
||||
deprecated.
|
||||
|
||||
Tue May 20 09:32:22 1997 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
|
@ -1933,8 +1938,8 @@ Sat Nov 30 20:46:43 1991 Steve Chamberlain (sac at rtl.cygnus.com)
|
|||
Wed Nov 27 10:38:31 1991 Steve Chamberlain (sac at rtl.cygnus.com)
|
||||
|
||||
* internalcoff.h: (internal_scnhdr) took out #def dependency, now
|
||||
s_nreloc and s_nlnno are always long. (internal_reloc): allways
|
||||
has an offset field now.
|
||||
s_nreloc and s_nlnno are always long.
|
||||
(internal_reloc): Always has an offset field now.
|
||||
|
||||
Fri Nov 22 08:12:58 1991 John Gilmore (gnu at cygnus.com)
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue