File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,22 @@ set(TARGET_LIBC_ENTRYPOINTS
16
16
libc.src.ctype.toascii
17
17
libc.src.ctype.tolower
18
18
libc.src.ctype.toupper
19
+
20
+ # errno.h entrypoints
21
+ libc.src.errno.__errno_location
22
+
19
23
# string.h entrypoints
20
24
libc.src.string.bzero
21
25
libc.src.string.memchr
22
26
libc.src.string.memcmp
23
27
libc.src.string.memcpy
24
28
libc.src.string.memmove
25
- libc.src.string.memset
26
29
libc.src.string.memrchr
30
+ libc.src.string.memset
27
31
libc.src.string.strcat
28
32
libc.src.string.strchr
29
- libc.src.string.strcpy
30
33
libc.src.string.strcmp
34
+ libc.src.string.strcpy
31
35
libc.src.string.strcspn
32
36
libc.src.string.strlen
33
37
libc.src.string.strncmp
@@ -62,6 +66,11 @@ set(TARGET_LIBM_ENTRYPOINTS
62
66
libc.src.math.ceil
63
67
libc.src.math.ceilf
64
68
libc.src.math.ceill
69
+ libc.src.math.cos
70
+ libc.src.math.cosf
71
+ libc.src.math.expf
72
+ libc.src.math.exp2f
73
+ libc.src.math.expm1f
65
74
libc.src.math.fabs
66
75
libc.src.math.fabsf
67
76
libc.src.math.fabsl
@@ -95,7 +104,7 @@ set(TARGET_LIBM_ENTRYPOINTS
95
104
libc.src.math.llroundl
96
105
libc.src.math.logb
97
106
libc.src.math.logbf
98
- libc.src.math.logbl
107
+ libc.src.math.logbl
99
108
libc.src.math.lround
100
109
libc.src.math.lroundf
101
110
libc.src.math.lroundl
@@ -120,12 +129,16 @@ set(TARGET_LIBM_ENTRYPOINTS
120
129
libc.src.math.round
121
130
libc.src.math.roundf
122
131
libc.src.math.roundl
132
+ libc.src.math.sin
133
+ libc.src.math.sincosf
134
+ libc.src.math.sinf
123
135
libc.src.math.sqrt
124
136
libc.src.math.sqrtf
125
137
libc.src.math.sqrtl
138
+ libc.src.math.tan
126
139
libc.src.math.trunc
127
140
libc.src.math.truncf
128
- libc.src.math.truncl
141
+ libc.src.math.truncl
129
142
)
130
143
131
144
set(TARGET_LLVMLIBC_ENTRYPOINTS
You can’t perform that action at this time.
0 commit comments