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 /ld | |
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 'ld')
-rw-r--r-- | ld/ChangeLog | 8 | ||||
-rw-r--r-- | ld/emultempl/ppc64elf.em | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index c319829..f962891 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2004-03-23 Alan Modra <amodra@bigpond.net.au> + + PR 51. + * emultempl/ppc64elf.em (ppc_create_output_section_statements): Set + link_info.wrap_char. + 2004-03-20 H.J. Lu <hongjiu.lu@intel.com> * lexsup.c (parse_args): Don't set unresolved_syms_in_objects @@ -76,7 +82,7 @@ 2004-02-23 Alan Modra <amodra@bigpond.net.au> * ldexp.c (fold_tree): Follow indirect symbols. - + 2004-02-20 Nathan Sidwell <nathan@codesourcery.com> * ldgram.y (exp): Add two operand ALIGN. diff --git a/ld/emultempl/ppc64elf.em b/ld/emultempl/ppc64elf.em index 5746f79..22ed608 100644 --- a/ld/emultempl/ppc64elf.em +++ b/ld/emultempl/ppc64elf.em @@ -1,5 +1,5 @@ # This shell script emits a C file. -*- C -*- -# Copyright 2002, 2003 Free Software Foundation, Inc. +# Copyright 2002, 2003, 2004 Free Software Foundation, Inc. # # This file is part of GLD, the Gnu Linker. # @@ -65,6 +65,8 @@ ppc_create_output_section_statements (void) && link_info.hash->creator != &bfd_elf64_powerpcle_vec) return; + link_info.wrap_char = '.'; + stub_file = lang_add_input_file ("linker stubs", lang_input_file_is_fake_enum, NULL); |