]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Library/BasePeCoffLib/BasePeCoffLib.inf
ArmPkg: Added Aarch64 support
[mirror_edk2.git] / ArmPkg / Library / BasePeCoffLib / BasePeCoffLib.inf
1 ## @file
2 # PE/COFF Loader Library implementation.
3 # The IPF version library supports loading IPF and EBC PE/COFF image.
4 # The IA32 version library support loading IA32, X64 and EBC PE/COFF images.
5 # The X64 version library support loading IA32, X64 and EBC PE/COFF images.
6 #
7 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
8 # Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
9 # Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.<BR>
10 #
11 # This program and the accompanying materials
12 # are licensed and made available under the terms and conditions of the BSD License
13 # which accompanies this distribution. The full text of the license may be found at
14 # http://opensource.org/licenses/bsd-license.php.
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 #
19 ##
20
21 [Defines]
22 INF_VERSION = 0x00010005
23 BASE_NAME = MovtBasePeCoffLib
24 FILE_GUID = 11D2AB02-24BD-468b-BB84-E1CD5330BB13
25 MODULE_TYPE = BASE
26 VERSION_STRING = 1.0
27 LIBRARY_CLASS = PeCoffLib
28
29
30 #
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64
32 #
33
34 [Sources]
35 BasePeCoffLibInternals.h
36 BasePeCoff.c
37
38 [Sources.IA32, Sources.X64, Sources.EBC]
39 PeCoffLoaderEx.c
40
41 [Sources.IPF]
42 Ipf/PeCoffLoaderEx.c
43
44 [Sources.ARM]
45 Arm/PeCoffLoaderEx.c
46
47 [Sources.AARCH64]
48 AArch64/PeCoffLoaderEx.c
49
50 [Packages]
51 MdePkg/MdePkg.dec
52
53 [LibraryClasses]
54 DebugLib
55 PeCoffExtraActionLib
56 BaseMemoryLib
57