1213274Srpaulo/* BFD back-end for Intel64 UEFI application files.
2213274Srpaulo   Copyright 2007 Free Software Foundation, Inc.
3213274Srpaulo
4213274SrpauloThis file is part of BFD, the Binary File Descriptor library.
5213274Srpaulo
6213274SrpauloThis program is free software; you can redistribute it and/or modify
7213274Srpauloit under the terms of the GNU General Public License as published by
8213274Srpaulothe Free Software Foundation; either version 2 of the License, or
9213274Srpaulo(at your option) any later version.
10213274Srpaulo
11213274SrpauloThis program is distributed in the hope that it will be useful,
12213274Srpaulobut WITHOUT ANY WARRANTY; without even the implied warranty of
13213274SrpauloMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14213274SrpauloGNU General Public License for more details.
15213274Srpaulo
16213274SrpauloYou should have received a copy of the GNU General Public License
17213274Srpauloalong with this program; if not, write to the Free Software
18213274SrpauloFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
19213274Srpaulo
20213274Srpaulo#include "sysdep.h"
21213274Srpaulo#include "bfd.h"
22213274Srpaulo
23213274Srpaulo#define TARGET_SYM bfd_efi_app_x86_64_vec
24213274Srpaulo#define TARGET_NAME "efi-app-x86_64"
25213274Srpaulo#define COFF_IMAGE_WITH_PE
26213274Srpaulo#define COFF_WITH_PE
27213274Srpaulo#define COFF_WITH_pep
28213274Srpaulo#define PCRELOFFSET TRUE
29213274Srpaulo#define TARGET_UNDERSCORE '_'
30213274Srpaulo#define COFF_LONG_SECTION_NAMES
31213274Srpaulo#define PEI_TARGET_SUBSYSTEM	IMAGE_SUBSYSTEM_EFI_APPLICATION
32213274Srpaulo#define PEI_FORCE_MINIMUM_ALIGNMENT
33213274Srpaulo
34213274Srpaulo#include "coff-x86_64.c"
35