]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/emultempl/ia64elf.em
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / emultempl / ia64elf.em
CommitLineData
3f7deb8a 1# This shell script emits a C file. -*- C -*-
219d1afa 2# Copyright (C) 2003-2018 Free Software Foundation, Inc.
3f7deb8a 3#
f96b4a7b 4# This file is part of the GNU Binutils.
3f7deb8a
L
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
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
3f7deb8a
L
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
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
3f7deb8a
L
20#
21
22# This file is sourced from elf32.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#
92b93329 28fragment <<EOF
3f7deb8a
L
29
30/* None zero if generating binary for Intel Itanium processor. */
31static int itanium = 0;
32
33static void
5fe2850d 34ia64elf_after_parse (void)
3f7deb8a 35{
fbbc3759 36 link_info.relax_pass = 2;
9c4f8b73 37 bfd_elf${ELFSIZE}_ia64_after_parse (itanium);
97b11f40 38
5fe2850d 39 gld${EMULATION_NAME}_after_parse ();
3f7deb8a
L
40}
41
42EOF
43
44PARSE_AND_LIST_PROLOGUE='
45#define OPTION_ITANIUM 300
46'
47
48PARSE_AND_LIST_LONGOPTS='
49 { "itanium", no_argument, NULL, OPTION_ITANIUM},
50'
51
52PARSE_AND_LIST_OPTIONS='
53 fprintf (file, _("\
442996ee 54 --itanium Generate code for Intel Itanium processor\n"
3f7deb8a
L
55 ));
56'
57
58PARSE_AND_LIST_ARGS_CASES='
59 case OPTION_ITANIUM:
60 itanium = 1;
61 break;
62'
63
5fe2850d 64LDEMUL_AFTER_PARSE=ia64elf_after_parse
92b93329 65source_em ${srcdir}/emultempl/needrelax.em