daily update
[binutils.git] / ld / emultempl / ia64elf.em
blob88d57480af7a8c3c0a54047616329d42dc8a9180
1 # This shell script emits a C file. -*- C -*-
2 #   Copyright 2003, 2005, 2006, 2007, 2009 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; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 # MA 02110-1301, USA.
22 # This file is sourced from elf32.em, and defines extra ia64-elf
23 # specific routines.
25 # Define some shell vars to insert bits of code into the standard elf
26 # parse_args and list_options functions.
28 fragment <<EOF
30 /* None zero if generating binary for Intel Itanium processor.  */
31 static int itanium = 0;
33 static void
34 gld${EMULATION_NAME}_after_parse (void)
36   link_info.relax_pass = 2;
37   bfd_elf${ELFSIZE}_ia64_after_parse (itanium);
39   after_parse_default ();
42 EOF
44 PARSE_AND_LIST_PROLOGUE='
45 #define OPTION_ITANIUM                  300
48 PARSE_AND_LIST_LONGOPTS='
49     { "itanium", no_argument, NULL, OPTION_ITANIUM},
52 PARSE_AND_LIST_OPTIONS='
53   fprintf (file, _("\
54   --itanium                   Generate code for Intel Itanium processor\n"
55                    ));
58 PARSE_AND_LIST_ARGS_CASES='
59     case OPTION_ITANIUM:
60       itanium = 1;
61       break;
64 LDEMUL_AFTER_PARSE=gld${EMULATION_NAME}_after_parse
65 source_em ${srcdir}/emultempl/needrelax.em