efi-app-ia32.c revision 218822
1215976Sjmallett/* BFD back-end for Intel IA-32 EFI application files.
2232812Sjmallett   Copyright 1999, 2000, 2001, 2002, 2007 Free Software Foundation, Inc.
3215976Sjmallett   Contributed by David Mosberger <davidm@hpl.hp.com>
4215976Sjmallett
5215976SjmallettThis file is part of BFD, the Binary File Descriptor library.
6215976Sjmallett
7215976SjmallettThis program is free software; you can redistribute it and/or modify
8215976Sjmallettit under the terms of the GNU General Public License as published by
9215976Sjmallettthe Free Software Foundation; either version 2 of the License, or
10215976Sjmallett(at your option) any later version.
11215976Sjmallett
12215976SjmallettThis program is distributed in the hope that it will be useful,
13215976Sjmallettbut WITHOUT ANY WARRANTY; without even the implied warranty of
14215976SjmallettMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15215976SjmallettGNU General Public License for more details.
16215976Sjmallett
17215976SjmallettYou should have received a copy of the GNU General Public License
18232812Sjmallettalong with this program; if not, write to the Free Software
19215976SjmallettFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
20215976Sjmallett
21215976Sjmallett#include "sysdep.h"
22215976Sjmallett#include "bfd.h"
23215976Sjmallett
24215976Sjmallett#define TARGET_SYM bfd_efi_app_ia32_vec
25215976Sjmallett#define TARGET_NAME "efi-app-ia32"
26215976Sjmallett#define COFF_IMAGE_WITH_PE
27215976Sjmallett#define COFF_WITH_PE
28215976Sjmallett#define PCRELOFFSET TRUE
29232812Sjmallett#define TARGET_UNDERSCORE '_'
30215976Sjmallett#define COFF_LONG_SECTION_NAMES
31215976Sjmallett#define PEI_TARGET_SUBSYSTEM	IMAGE_SUBSYSTEM_EFI_APPLICATION
32215976Sjmallett#define PEI_FORCE_MINIMUM_ALIGNMENT
33215976Sjmallett
34215976Sjmallett#include "coff-i386.c"
35215976Sjmallett