~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to ld/emultempl/ia64elf.em

  • Committer: Bazaar Package Importer
  • Author(s): James Troup
  • Date: 2004-05-19 10:35:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040519103544-17h3o6e8pwndydrg
Tags: 2.14.90.0.7-8
debian/rules: don't use gcc-2.95 on m68k.  Thanks to Adam Conrad for
pointing this out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This shell script emits a C file. -*- C -*-
 
2
#   Copyright 2003 Free Software Foundation, Inc.
 
3
#
 
4
# This file is part of GLD, the Gnu Linker.
 
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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
#
 
20
 
 
21
# This file is sourced from elf32.em, and defines extra ia64-elf
 
22
# specific routines.
 
23
#
 
24
# Define some shell vars to insert bits of code into the standard elf
 
25
# parse_args and list_options functions.
 
26
#
 
27
cat >>e${EMULATION_NAME}.c <<EOF
 
28
 
 
29
/* None zero if generating binary for Intel Itanium processor.  */
 
30
static int itanium = 0;
 
31
 
 
32
static void
 
33
gld${EMULATION_NAME}_after_parse (void)
 
34
{
 
35
  bfd_elf${ELFSIZE}_ia64_after_parse (itanium);
 
36
}
 
37
 
 
38
EOF
 
39
 
 
40
PARSE_AND_LIST_PROLOGUE='
 
41
#define OPTION_ITANIUM                  300
 
42
'
 
43
 
 
44
PARSE_AND_LIST_LONGOPTS='
 
45
    { "itanium", no_argument, NULL, OPTION_ITANIUM},
 
46
'
 
47
 
 
48
PARSE_AND_LIST_OPTIONS='
 
49
  fprintf (file, _("\
 
50
  --itanium             Generate code for Intel Itanium processor\n"
 
51
                   ));
 
52
'
 
53
 
 
54
PARSE_AND_LIST_ARGS_CASES='
 
55
    case OPTION_ITANIUM:
 
56
      itanium = 1;
 
57
      break;
 
58
'
 
59
 
 
60
LDEMUL_AFTER_PARSE=gld${EMULATION_NAME}_after_parse
 
61
. ${srcdir}/emultempl/needrelax.em