Update release readme after making 2.43.1 release
[binutils-gdb.git] / ld / emultempl / elf-x86.em
blob2e9863fa1e6490a251499aa74a82d385c3b4d8df
1 # This shell script emits a C file. -*- C -*-
2 # Copyright (C) 2019-2024 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the license, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; see the file COPYING3. If not,
18 # see <http://www.gnu.org/licenses/>.
21 # This file is sourced from elf.em, and defines x86 specific routines.
23 fragment <<EOF
25 #include "ldlex.h"
26 #include "elf-linker-x86.h"
28 static struct elf_linker_x86_params params;
30 /* This is a convenient point to tell BFD about target specific flags.
31    After the output has been created, but before inputs are read.  */
33 static void
34 elf_x86_create_output_section_statements (void)
36   _bfd_elf_linker_x86_set_options (&link_info, &params);
39 EOF
41 LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=elf_x86_create_output_section_statements
43 if test -n "$CALL_NOP_BYTE"; then
45 fragment <<EOF
47 static void
48 elf_x86_before_parse (void)
50   params.call_nop_byte = $CALL_NOP_BYTE;
52   gld${EMULATION_NAME}_before_parse ();
55 EOF
57 LDEMUL_BEFORE_PARSE=elf_x86_before_parse
60 case x${OUTPUT_FORMAT}${CALL_NOP_BYTE} in
61   x*x86-64*0x67)
62 fragment <<EOF
64 static void
65 elf_x86_64_before_parse (void)
67   params.mark_plt = DEFAULT_LD_Z_MARK_PLT;
69   elf_x86_before_parse ();
71 EOF
73     LDEMUL_BEFORE_PARSE=elf_x86_64_before_parse
74     ;;
75 esac