ia64elf.em 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # This shell script emits a C file. -*- C -*-
  2. # Copyright (C) 2003-2015 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. # 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. fragment <<EOF
  28. /* None zero if generating binary for Intel Itanium processor. */
  29. static int itanium = 0;
  30. static void
  31. ia64elf_after_parse (void)
  32. {
  33. link_info.relax_pass = 2;
  34. bfd_elf${ELFSIZE}_ia64_after_parse (itanium);
  35. gld${EMULATION_NAME}_after_parse ();
  36. }
  37. EOF
  38. PARSE_AND_LIST_PROLOGUE='
  39. #define OPTION_ITANIUM 300
  40. '
  41. PARSE_AND_LIST_LONGOPTS='
  42. { "itanium", no_argument, NULL, OPTION_ITANIUM},
  43. '
  44. PARSE_AND_LIST_OPTIONS='
  45. fprintf (file, _("\
  46. --itanium Generate code for Intel Itanium processor\n"
  47. ));
  48. '
  49. PARSE_AND_LIST_ARGS_CASES='
  50. case OPTION_ITANIUM:
  51. itanium = 1;
  52. break;
  53. '
  54. LDEMUL_AFTER_PARSE=ia64elf_after_parse
  55. source_em ${srcdir}/emultempl/needrelax.em