xref: /netbsd-src/external/gpl3/binutils/dist/ld/emultempl/ia64elf.em (revision 122b5006ee1bd67145794b4cde92f4fe4781a5ec)
1# This shell script emits a C file. -*- C -*-
2#   Copyright (C) 2003-2020 Free Software Foundation, Inc.
3#
4# This file is part of the GNU Binutils.
5#
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.
10#
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.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
20#
21
22# This file is sourced from elf.em, and defines extra ia64-elf
23# specific routines.
24#
25# Define some shell vars to insert bits of code into the standard elf
26# parse_args and list_options functions.
27#
28fragment <<EOF
29
30#include "elfxx-ia64.h"
31
32/* None zero if generating binary for Intel Itanium processor.  */
33static int itanium = 0;
34
35static void
36ia64elf_after_parse (void)
37{
38  link_info.relax_pass = 2;
39  bfd_elf${ELFSIZE}_ia64_after_parse (itanium);
40
41  ldelf_after_parse ();
42}
43
44EOF
45
46PARSE_AND_LIST_PROLOGUE='
47#define OPTION_ITANIUM			300
48'
49
50PARSE_AND_LIST_LONGOPTS='
51    { "itanium", no_argument, NULL, OPTION_ITANIUM},
52'
53
54PARSE_AND_LIST_OPTIONS='
55  fprintf (file, _("\
56  --itanium                   Generate code for Intel Itanium processor\n"
57		   ));
58'
59
60PARSE_AND_LIST_ARGS_CASES='
61    case OPTION_ITANIUM:
62      itanium = 1;
63      break;
64'
65
66LDEMUL_AFTER_PARSE=ia64elf_after_parse
67source_em ${srcdir}/emultempl/needrelax.em
68