]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/StdLib.inc
ArmVirtPkg: add "Contributions.txt" and "License.txt"
[mirror_edk2.git] / StdLib / StdLib.inc
CommitLineData
d7ce7006 1################################################################\r
2# Boilerplate text to be included by any DSC file using the\r
3# Standard Libraries.\r
4#\r
5# The including DSC file must DEFINE the EMULATE macro if\r
6# the application is to be run in an emulation environment.\r
41b152c5 7#\r
caf89d64 8# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>\r
41b152c5 9# This program and the accompanying materials\r
10# are licensed and made available under the terms and conditions of the BSD License\r
11# which accompanies this distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.\r
13#\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
d7ce7006 16################################################################\r
17\r
18##########\r
19# Socket Support Libraries\r
20##########\r
21\r
22[LibraryClasses.common]\r
23 BsdSocketLib|StdLib/BsdSocketLib/BsdSocketLib.inf\r
24 EfiSocketLib|StdLib/EfiSocketLib/EfiSocketLib.inf\r
25 UseSocketDxe|StdLib/UseSocketDxe/UseSocketDxe.inf\r
26\r
27[LibraryClasses.Common.UEFI_APPLICATION]\r
a7a8363d 28 ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf\r
6a013e50
DM
29 FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf\r
30 SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf\r
a7a8363d 31 ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf\r
32\r
d7ce7006 33 #\r
34 # C Standard Libraries\r
35 #\r
36 LibC|StdLib/LibC/LibC.inf\r
37 LibCType|StdLib/LibC/Ctype/Ctype.inf\r
38 LibLocale|StdLib/LibC/Locale/Locale.inf\r
39 LibMath|StdLib/LibC/Math/Math.inf\r
40 LibSignal|StdLib/LibC/Signal/Signal.inf\r
41 LibStdio|StdLib/LibC/Stdio/Stdio.inf\r
42 LibStdLib|StdLib/LibC/StdLib/StdLib.inf\r
43 LibString|StdLib/LibC/String/String.inf\r
44 LibTime|StdLib/LibC/Time/Time.inf\r
45 LibUefi|StdLib/LibC/Uefi/Uefi.inf\r
46 LibWchar|StdLib/LibC/Wchar/Wchar.inf\r
47\r
48# Common Utilities for Networking Libraries\r
49 LibNetUtil|StdLib/LibC/NetUtil/NetUtil.inf\r
50\r
51# Additional libraries for POSIX functionality.\r
caf89d64
DM
52 LibPosix|StdLib/PosixLib/PosixLib.inf # Combines LibErr, LibGen, LibGlob, LibStringlist, GetPass into one library\r
53\r
d7ce7006 54 LibErr|StdLib/PosixLib/Err/LibErr.inf\r
55 LibGen|StdLib/PosixLib/Gen/LibGen.inf\r
56 LibGlob|StdLib/PosixLib/Glob/LibGlob.inf\r
57 LibStringlist|StdLib/PosixLib/Stringlist/LibStringlist.inf\r
6c6c850a 58 LibIIO|StdLib/LibC/Uefi/InteractiveIO/IIO.inf\r
59\r
60# Additional, non-standard, libraries\r
61 LibContainer|StdLib/LibC/Containers/ContainerLib.inf\r
d7ce7006 62\r
63# Libraries for device abstractions within the Standard C Library\r
64# Applications should not directly access any functions defined in these libraries.\r
65 LibGdtoa|StdLib/LibC/gdtoa/gdtoa.inf\r
66 DevConsole|StdLib/LibC/Uefi/Devices/daConsole.inf\r
efb419ea
DM
67 DevShell|StdLib/LibC/Uefi/Devices/daShell.inf # DEPRECATED! Please use DevMedia for new code.\r
68 DevMedia|StdLib/LibC/Uefi/Devices/daShell.inf\r
d7ce7006 69 DevUtility|StdLib/LibC/Uefi/Devices/daUtility.inf\r
70\r
16a5fed6 71 LuaLib|AppPkg/Applications/Lua/LuaLib.inf # Lua language library\r
72\r
86a7f720 73[LibraryClasses.ARM]\r
c614ca50 74 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf\r
6ba46a92
HL
75\r
76[LibraryClasses.AArch64]\r
77 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf\r
c614ca50 78\r
d7ce7006 79[Components]\r
80# BaseLib and BaseMemoryLib need to be built with the /GL- switch when using the Microsoft\r
81# tool chain. This is required so that the library functions can be resolved during\r
82# the second pass of the linker during Link-time-code-generation.\r
83###\r
84 MdePkg/Library/BaseLib/BaseLib.inf {\r
85 <BuildOptions>\r
86 MSFT:*_*_*_CC_FLAGS = /X /Zc:wchar_t /GL-\r
87 }\r
88\r
89 MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf {\r
90 <BuildOptions>\r
91 MSFT:*_*_*_CC_FLAGS = /X /Zc:wchar_t /GL-\r
92 }\r
93\r
94##########\r
95# Socket Layer\r
96##########\r
97 StdLib/SocketDxe/SocketDxe.inf\r
98\r
99\r
100##############################################################################\r
101#\r
102# See the additional comments below if you plan to run applications under an\r
103# emulation environment.\r
104#\r
105\r
106[BuildOptions]\r
16a5fed6 107!ifdef $(EMULATE)\r
d7ce7006 108 # The Build Options, below, are only used when building the Standard Libraries\r
16a5fed6 109 # to be run under an emulation environment; such as NT32Pkg.\r
8aa163da 110 # They disable optimization which facillitates debugging under the Emulation environment.\r
c21e7a78
AF
111 INTEL:*_*_IA32_CC_FLAGS = /Od /D UEFI_C_SOURCE\r
112 MSFT:*_*_IA32_CC_FLAGS = /Od /D UEFI_C_SOURCE\r
113 GCC:*_*_IA32_CC_FLAGS = -O0 -DUEFI_C_SOURCE\r
114 RVCT:*_*_*_CC_FLAGS = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm\r
115 ARMGCC:*_*_*_CC_FLAGS = -O0 -DUEFI_C_SOURCE -Wno-unknown-pragmas -Wno-unused -Wno-format-zero-length\r
116 XCODE:*_*_*_CC_FLAGS = -O0 -DUEFI_C_SOURCE -Wno-unused-const-variable -Wno-string-compare -Wno-sometimes-uninitialized\r
16a5fed6 117\r
118!else\r
119 # These Build Options are used when building the Standard Libraries to be run\r
120 # on real hardware.\r
121 INTEL:*_*_*_CC_FLAGS = /Qfreestanding /D UEFI_C_SOURCE\r
122 MSFT:*_*_*_CC_FLAGS = /X /Zc:wchar_t /D UEFI_C_SOURCE\r
123 GCC:*_*_*_CC_FLAGS = -nostdinc -nostdlib -DUEFI_C_SOURCE\r
124 RVCT:*_*_*_CC_FLAGS = --library_interface=none -DUEFI_C_SOURCE -J$(WORKSPACE)/StdLib/Include -J$(WORKSPACE)/StdLib/Include/Arm\r
125 ARMGCC:*_*_*_CC_FLAGS = -nostdinc -nostdlib -DUEFI_C_SOURCE -Wno-unknown-pragmas -Wno-unused -Wno-format-zero-length\r
126 XCODE:*_*_*_CC_FLAGS = -nostdinc -nostdlib -DUEFI_C_SOURCE -Wno-unused-const-variable -Wno-string-compare -Wno-sometimes-uninitialized\r
d7ce7006 127!endif\r