]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
OVMF: Align PE images in ROM, and strip relocations were possible.
[mirror_edk2.git] / MdePkg / 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 - 2009, Intel Corporation.<BR>
8 # Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>
9 #
10 # All rights reserved. This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #
17 #
18 #**/
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = BasePeCoffLib
23 FILE_GUID = 556f5d10-7309-4af4-b80a-8196bd60946f
24 MODULE_TYPE = BASE
25 VERSION_STRING = 1.0
26 LIBRARY_CLASS = PeCoffLib
27
28
29 #
30 # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM
31 #
32
33 [Sources.common]
34 BasePeCoffLibInternals.h
35 BasePeCoff.c
36
37 [Sources.IA32, Sources.X64, Sources.EBC]
38 PeCoffLoaderEx.c
39
40 [Sources.IPF]
41 Ipf/PeCoffLoaderEx.c
42
43 [Sources.ARM]
44 Arm/PeCoffLoaderEx.c
45
46 [Packages]
47 MdePkg/MdePkg.dec
48
49 [LibraryClasses]
50 DebugLib
51 PeCoffExtraActionLib
52 BaseMemoryLib
53