update dependencies
[deliverable/binutils-gdb.git] / ld / emultempl / ia64elf.em
CommitLineData
3f7deb8a 1# This shell script emits a C file. -*- C -*-
f96b4a7b 2# Copyright 2003, 2007 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
34gld${EMULATION_NAME}_after_parse (void)
35{
fbbc3759 36 link_info.relax_pass = 2;
9c4f8b73 37 bfd_elf${ELFSIZE}_ia64_after_parse (itanium);
3f7deb8a
L
38}
39
40EOF
41
42PARSE_AND_LIST_PROLOGUE='
43#define OPTION_ITANIUM 300
44'
45
46PARSE_AND_LIST_LONGOPTS='
47 { "itanium", no_argument, NULL, OPTION_ITANIUM},
48'
49
50PARSE_AND_LIST_OPTIONS='
51 fprintf (file, _("\
442996ee 52 --itanium Generate code for Intel Itanium processor\n"
3f7deb8a
L
53 ));
54'
55
56PARSE_AND_LIST_ARGS_CASES='
57 case OPTION_ITANIUM:
58 itanium = 1;
59 break;
60'
61
62LDEMUL_AFTER_PARSE=gld${EMULATION_NAME}_after_parse
92b93329 63source_em ${srcdir}/emultempl/needrelax.em
This page took 0.196495 seconds and 4 git commands to generate.