pei-ia64.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* BFD back-end for HP/Intel IA-64 PE IMAGE COFF files.
  2. Copyright (C) 1999-2022 Free Software Foundation, Inc.
  3. Contributed by David Mosberger <davidm@hpl.hp.com>
  4. This implementation only supports objcopy to ouput IA-64 PE IMAGE COFF
  5. files.
  6. This file is part of BFD, the Binary File Descriptor library.
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or
  10. (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.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  18. MA 02110-1301, USA. */
  19. #include "sysdep.h"
  20. #include "bfd.h"
  21. #define TARGET_SYM ia64_pei_vec
  22. #define TARGET_NAME "pei-ia64"
  23. #define COFF_IMAGE_WITH_PE
  24. #define COFF_WITH_PE
  25. #define COFF_WITH_pep
  26. #define PCRELOFFSET true
  27. #define TARGET_UNDERSCORE '_'
  28. /* Long section names not allowed in executable images, only object files. */
  29. #define COFF_LONG_SECTION_NAMES 0
  30. #include "coff-ia64.c"