1 # This shell script emits a C file. -*- C -*-
2 # Copyright (C) 2017-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-generic.em, and defines S/390
29 static struct s390_elf_params params = { 0 };
31 /* This is a convenient point to tell BFD about target specific flags.
32 After the output has been created, but before inputs are read. */
34 s390_elf_create_output_section_statements (void)
36 if (!bfd_elf_s390_set_options (&link_info, ¶ms))
37 einfo (_("%F%P: can not init BFD: %E\n"));
42 # Define some shell vars to insert bits of code into the standard elf
43 # parse_args and list_options functions.
45 PARSE_AND_LIST_LONGOPTS='
46 { "s390-pgste", no_argument, NULL, OPTION_PGSTE},
49 PARSE_AND_LIST_OPTIONS='
50 fprintf (file, _(" --s390-pgste Tell the kernel to "
51 "allocate 4k page tables\n"));
54 PARSE_AND_LIST_ARGS_CASES='
60 LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=s390_elf_create_output_section_statements