mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
bcacc0f587
* elf.c (bfd_elf_set_group_contents): Assign sh_info for ld -r when the signature symbol is global. * elflink.c (elf_link_input_bfd): Ensure group signature symbol is output when ld -r. Set group sh_info when local. * linker.c (default_indirect_link_order): Handle group sections specially. ld/ * ldemul.c (ldemul_place_orphan): Add "name" param. * ldemul.h (ldemul_place_orphan): Update prototype. (struct ld_emulation_xfer_struct <place_orphan>): Likewise. * ldlang.c (lang_place_orphans): Generate unique section names here.. * emultempl/elf32.em (place_orphan): ..rather than here. Don't directly use an existing output section statement that has no bfd section. * emultempl/pe.em (place_orphan): Likewise. * emultempl/pep.em (place_orphan): Likewise. * emultempl/beos.em (place_orphan): Adjust. * emultempl/spuelf.em (spu_place_special_section): Adjust place_orphan call. * emultempl/genelf.em (gld${EMULATION_NAME}_after_open): New function. (LDEMUL_AFTER_OPEN): Define.
61 lines
1.8 KiB
Plaintext
61 lines
1.8 KiB
Plaintext
# This shell script emits a C file. -*- C -*-
|
|
# Copyright 2006, 2007 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of the GNU Binutils.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
#
|
|
|
|
# This file is sourced from generic.em
|
|
#
|
|
fragment <<EOF
|
|
#include "elf-bfd.h"
|
|
|
|
EOF
|
|
source_em ${srcdir}/emultempl/elf-generic.em
|
|
fragment <<EOF
|
|
|
|
static void
|
|
gld${EMULATION_NAME}_finish (void)
|
|
{
|
|
gld${EMULATION_NAME}_map_segments (FALSE);
|
|
finish_default ();
|
|
}
|
|
|
|
static void
|
|
gld${EMULATION_NAME}_after_open (void)
|
|
{
|
|
bfd *ibfd;
|
|
asection *sec;
|
|
asymbol **syms;
|
|
|
|
if (link_info.relocatable)
|
|
for (ibfd = link_info.input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
|
|
if ((syms = bfd_get_outsymbols (ibfd)) != NULL
|
|
&& bfd_get_flavour (ibfd) == bfd_target_elf_flavour)
|
|
for (sec = ibfd->sections; sec != NULL; sec = sec->next)
|
|
if ((sec->flags & (SEC_GROUP | SEC_LINKER_CREATED)) == SEC_GROUP)
|
|
{
|
|
struct bfd_elf_section_data *sec_data = elf_section_data (sec);
|
|
elf_group_id (sec) = syms[sec_data->this_hdr.sh_info - 1];
|
|
}
|
|
}
|
|
EOF
|
|
# Put these extra routines in ld_${EMULATION_NAME}_emulation
|
|
#
|
|
LDEMUL_FINISH=gld${EMULATION_NAME}_finish
|
|
LDEMUL_AFTER_OPEN=gld${EMULATION_NAME}_after_open
|