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/emultempl | |
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/emultempl')
-rw-r--r-- | ld/emultempl/ppc64elf.em | 4 |
1 files changed, 3 insertions, 1 deletions
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); |