]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/LibC/String/String.inf
Add Socket Libraries.
[mirror_edk2.git] / StdLib / LibC / String / String.inf
CommitLineData
2aa62f2b 1## @file\r
2# Standard C library: Miscelaneous implementations.\r
3#\r
53e1e5c6 4# Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
2aa62f2b 5#\r
6# This program and the accompanying materials\r
7# are licensed and made available under the terms and conditions of the BSD License\r
8# which accompanies this distribution. The full text of the license may be found at\r
9# http://opensource.org/licenses/bsd-license.php.\r
10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12#\r
13#\r
14##\r
15\r
16[Defines]\r
17 INF_VERSION = 0x00010005\r
18 BASE_NAME = LibString\r
19 FILE_GUID = caee2f3b-3191-4da0-ad10-a5c07e636cd1\r
20 MODULE_TYPE = UEFI_APPLICATION\r
21 VERSION_STRING = 1.0\r
22 LIBRARY_CLASS = LibString\r
23\r
24#\r
25# VALID_ARCHITECTURES = IA32 X64 IPF\r
26#\r
27\r
28[Sources]\r
29 Misc.c\r
30 Copying.c\r
31 Concatenation.c\r
32 Comparison.c\r
33 Searching.c\r
34 ErrorList.c\r
53e1e5c6 35 strncasecmp.c\r
d7ce7006 36 strlcpy.c\r
37 strlcat.c\r
38 strsep.c\r
2aa62f2b 39\r
40[Packages]\r
41 StdLib/StdLib.dec\r
42 StdLibPrivateInternalFiles/DoNotUse.dec\r
43 MdePkg/MdePkg.dec\r
44\r
45[LibraryClasses]\r
46 BaseLib\r
47 BaseMemoryLib\r
48 PrintLib # Used for strerror()\r
49 PcdLib\r
50 LibC\r
51 LibCType\r
52 LibStdLib\r
53\r
54################################################################\r
55#\r
56# The Build Options, below, are only used when building the C library.\r
57# DO NOT use them when building your application!\r
58# Nasty things could happen if you do.\r
59#\r
60# /Oi- is required for Microsoft VC++ to allow "intrinsic" functions to be\r
61# defined in this library.\r
62# /GL- is required so that LTCG generated references to functions in this library,\r
63# such as memcpy(), can be resolved.\r
64#\r
65[BuildOptions]\r
66 MSFT:*_*_*_CC_FLAGS = /Oi- /GL-\r