]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/LibC/gdtoa/gdtoa.inf
BaseTools: AutoGen - use the new shared RegEx
[mirror_edk2.git] / StdLib / LibC / gdtoa / gdtoa.inf
CommitLineData
2aa62f2b 1## @file\r
2# This module contains source for a library of binary -> decimal\r
3# and decimal -> binary conversion routines, for single-, double-,\r
4# and extended-precision IEEE binary floating-point arithmetic, and\r
5# other IEEE-like binary floating-point, including "double double".\r
6#\r
7# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>\r
8#\r
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.php.\r
13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15#\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = LibGdtoa\r
22 FILE_GUID = 5c98de6e-cb69-465f-b6b9-f661e26e6f9d\r
23 MODULE_TYPE = UEFI_APPLICATION\r
24 VERSION_STRING = 1.0\r
25 LIBRARY_CLASS = LibGdtoa\r
26\r
27#\r
28# VALID_ARCHITECTURES = IA32 X64 IPF\r
29#\r
30\r
31[Sources.X64]\r
32 strtof.c\r
33 strtold_px.c\r
34 strtopx.c\r
35\r
36[Sources.IPF]\r
37 strtof.c\r
38 Ipf/strtold.c\r
39\r
40[Sources.IA32]\r
41 strtof.c\r
42 strtold_px.c\r
43 strtopx.c\r
44\r
45[Sources.ARM]\r
46 strtof.c\r
1bc81f40 47 Ipf/strtold.c\r
2aa62f2b 48\r
1bbb83b5
HL
49[Sources.AARCH64]\r
50 strtof.c\r
51 Ipf/strtold.c\r
52\r
2aa62f2b 53[Sources]\r
54 strtod.c # Public interfaces\r
55 atof.c\r
56\r
57 # Private interfaces interfacing to libc\r
58 dtoa.c\r
59 ldtoa.c\r
60 gdtoa.c\r
61\r
62 # private interfaces\r
63 dmisc.c\r
64 gmisc.c\r
65 hd_init.c\r
66 hexnan.c\r
67 misc.c\r
68 smisc.c\r
69 strtodg.c\r
70 sum.c\r
71 ulp.c\r
72\r
73[Packages]\r
74 StdLib/StdLib.dec\r
75 StdLibPrivateInternalFiles/DoNotUse.dec\r
76 MdePkg/MdePkg.dec\r
77\r
78[LibraryClasses]\r
79 LibC\r
80 LibLocale\r
81 LibStdLib\r
82 LibString\r