]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/LibC/Math/Math.inf
StdLib: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / StdLib / LibC / Math / Math.inf
CommitLineData
2aa62f2b 1## @file\r
2# Standard C library: Math Library.\r
3#\r
56ca9007 4# Copyright (c) 2010 - 2018, 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 = LibMath\r
19 FILE_GUID = a9dc6f60-f861-47d1-8751-ecaae7d27291\r
20 MODULE_TYPE = UEFI_APPLICATION\r
21 VERSION_STRING = 1.0\r
22 LIBRARY_CLASS = LibMath\r
23\r
24#\r
56ca9007 25# VALID_ARCHITECTURES = IA32 X64\r
2aa62f2b 26#\r
27\r
28[Sources]\r
29 # ieee 754 specific\r
30 e_acos.c\r
31 e_asin.c\r
32 e_atan2.c\r
33 e_cosh.c\r
34 e_exp.c\r
35 e_sinh.c\r
36 e_log.c\r
37 e_log2.c\r
38 e_log10.c\r
39 e_pow.c\r
40 e_sqrt.c\r
41 e_fmod.c\r
42 e_rem_pio2.c\r
43\r
44 # kernel functions\r
45 k_cos.c\r
46 k_sin.c\r
47 k_tan.c\r
48 k_rem_pio2.c\r
49\r
50 # Simple, unadorned, functions\r
51 s_atan.c\r
52 s_cos.c\r
53 s_sin.c\r
54 s_tan.c\r
55 s_expm1.c\r
56 s_tanh.c\r
57 s_frexp.c\r
58 s_ldexp.c\r
59 s_scalbn.c\r
60 s_copysign.c\r
61 s_finite.c\r
62 s_infinity.c\r
63 s_modf.c\r
64 s_fabs.c\r
65 s_ceil.c\r
66 s_floor.c\r
67\r
68 # wrapper functions\r
69 w_acos.c\r
70 w_asin.c\r
71 w_atan2.c\r
72 w_cosh.c\r
73 w_sinh.c\r
74 w_exp.c\r
75 w_log.c\r
76 w_log2.c\r
77 w_log10.c\r
78 w_pow.c\r
79 w_sqrt.c\r
80 w_fmod.c\r
81\r
82[Packages]\r
83 StdLib/StdLib.dec\r
84 StdLibPrivateInternalFiles/DoNotUse.dec\r
85 MdePkg/MdePkg.dec\r
86\r
87[LibraryClasses]\r
88 LibC\r
89\r
90################################################################\r
91# The Build Options, below, are only used when building the C library.\r
92# DO NOT use them when building your application!\r
93# Nasty things could happen if you do.\r
94#\r
95# /Oi- is required for Microsoft VC++ to allow "intrinsic" functions to be\r
96# defined in this library.\r
97# /GL- is required so that LTCG generated references to functions in this library,\r
98# such as memcpy(), can be resolved.\r
99#\r
100[BuildOptions]\r
101 MSFT:*_*_*_CC_FLAGS = /Oi- /GL-\r