]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/LibC/gdtoa/gdtoa.inf
StdLib/LibC: Fix ARM symbol problems
[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
49[Sources]\r
50 strtod.c # Public interfaces\r
51 atof.c\r
52\r
53 # Private interfaces interfacing to libc\r
54 dtoa.c\r
55 ldtoa.c\r
56 gdtoa.c\r
57\r
58 # private interfaces\r
59 dmisc.c\r
60 gmisc.c\r
61 hd_init.c\r
62 hexnan.c\r
63 misc.c\r
64 smisc.c\r
65 strtodg.c\r
66 sum.c\r
67 ulp.c\r
68\r
69[Packages]\r
70 StdLib/StdLib.dec\r
71 StdLibPrivateInternalFiles/DoNotUse.dec\r
72 MdePkg/MdePkg.dec\r
73\r
74[LibraryClasses]\r
75 LibC\r
76 LibLocale\r
77 LibStdLib\r
78 LibString\r