Commit | Line | Data |
---|---|---|
92dd4511 | 1 | /* BFD back-end for HP/Intel IA-64 PE IMAGE COFF files. |
b90efa5b | 2 | Copyright (C) 1999-2015 Free Software Foundation, Inc. |
fac41780 JW |
3 | Contributed by David Mosberger <davidm@hpl.hp.com> |
4 | ||
92dd4511 L |
5 | This implementation only supports objcopy to ouput IA-64 PE IMAGE COFF |
6 | files. | |
7 | ||
cd123cb7 | 8 | This file is part of BFD, the Binary File Descriptor library. |
fac41780 | 9 | |
cd123cb7 NC |
10 | This program is free software; you can redistribute it and/or modify |
11 | it under the terms of the GNU General Public License as published by | |
12 | the Free Software Foundation; either version 3 of the License, or | |
13 | (at your option) any later version. | |
fac41780 | 14 | |
cd123cb7 NC |
15 | This program is distributed in the hope that it will be useful, |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | GNU General Public License for more details. | |
fac41780 | 19 | |
cd123cb7 NC |
20 | You should have received a copy of the GNU General Public License |
21 | along with this program; if not, write to the Free Software | |
22 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
23 | MA 02110-1301, USA. */ | |
fac41780 | 24 | |
fac41780 | 25 | #include "sysdep.h" |
3db64b00 | 26 | #include "bfd.h" |
fac41780 | 27 | |
6d00b590 | 28 | #define TARGET_SYM ia64_pei_vec |
92dd4511 | 29 | #define TARGET_NAME "pei-ia64" |
fac41780 JW |
30 | #define COFF_IMAGE_WITH_PE |
31 | #define COFF_WITH_PE | |
cbff5e0d | 32 | #define COFF_WITH_pep |
b34976b6 | 33 | #define PCRELOFFSET TRUE |
fac41780 | 34 | #define TARGET_UNDERSCORE '_' |
88183869 DK |
35 | /* Long section names not allowed in executable images, only object files. */ |
36 | #define COFF_LONG_SECTION_NAMES 0 | |
fac41780 JW |
37 | |
38 | #include "coff-ia64.c" |