Skip to content

Commit 87806b7

Browse files
committed
add linux targets
1 parent 15103c2 commit 87806b7

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

libc/config/linux/aarch64/entrypoints.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,7 @@ if(LLVM_LIBC_FULL_BUILD)
970970
libc.src.stdio.fileno
971971
libc.src.stdio.flockfile
972972
libc.src.stdio.fopen
973+
libc.src.stdio.fopen_s
973974
libc.src.stdio.fopencookie
974975
libc.src.stdio.fputc
975976
libc.src.stdio.fputs
@@ -1000,11 +1001,14 @@ if(LLVM_LIBC_FULL_BUILD)
10001001
# stdlib.h entrypoints
10011002
libc.src.stdlib._Exit
10021003
libc.src.stdlib.abort
1004+
libc.src.stdlib.abort_handler_s
10031005
libc.src.stdlib.at_quick_exit
10041006
libc.src.stdlib.atexit
10051007
libc.src.stdlib.exit
10061008
libc.src.stdlib.getenv
1009+
libc.src.stdlib.ignore_handler_s
10071010
libc.src.stdlib.quick_exit
1011+
libc.src.stdlib.set_constraint_handler_s
10081012

10091013
# signal.h entrypoints
10101014
libc.src.signal.kill

libc/config/linux/arm/entrypoints.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,19 +146,22 @@ set(TARGET_LIBC_ENTRYPOINTS
146146

147147
# stdlib.h entrypoints
148148
libc.src.stdlib.abs
149+
libc.src.stdlib.abort_handler_s
149150
libc.src.stdlib.atof
150151
libc.src.stdlib.atoi
151152
libc.src.stdlib.atol
152153
libc.src.stdlib.atoll
153154
libc.src.stdlib.bsearch
154155
libc.src.stdlib.div
156+
libc.src.stdlib.ignore_handler_s
155157
libc.src.stdlib.labs
156158
libc.src.stdlib.ldiv
157159
libc.src.stdlib.llabs
158160
libc.src.stdlib.lldiv
159161
libc.src.stdlib.memalignment
160162
libc.src.stdlib.qsort
161163
libc.src.stdlib.qsort_r
164+
libc.src.stdlib.set_constraint_handler_s
162165
libc.src.stdlib.strtod
163166
libc.src.stdlib.strtof
164167
libc.src.stdlib.strtol

libc/config/linux/riscv/entrypoints.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,6 +1096,7 @@ if(LLVM_LIBC_FULL_BUILD)
10961096
libc.src.stdio.fileno
10971097
libc.src.stdio.flockfile
10981098
libc.src.stdio.fopen
1099+
libc.src.stdio.fopen_s
10991100
libc.src.stdio.fopencookie
11001101
libc.src.stdio.fputc
11011102
libc.src.stdio.fputs
@@ -1126,11 +1127,14 @@ if(LLVM_LIBC_FULL_BUILD)
11261127
# stdlib.h entrypoints
11271128
libc.src.stdlib._Exit
11281129
libc.src.stdlib.abort
1130+
libc.src.stdlib.abort_handler_s
11291131
libc.src.stdlib.at_quick_exit
11301132
libc.src.stdlib.atexit
11311133
libc.src.stdlib.exit
11321134
libc.src.stdlib.getenv
1135+
libc.src.stdlib.ignore_handler_s
11331136
libc.src.stdlib.quick_exit
1137+
libc.src.stdlib.set_constraint_handler_s
11341138

11351139
# signal.h entrypoints
11361140
libc.src.signal.kill

libc/config/linux/x86_64/entrypoints.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,14 +1162,14 @@ if(LLVM_LIBC_FULL_BUILD)
11621162
# stdlib.h entrypoints
11631163
libc.src.stdlib._Exit
11641164
libc.src.stdlib.abort
1165+
libc.src.stdlib.abort_handler_s
11651166
libc.src.stdlib.at_quick_exit
11661167
libc.src.stdlib.atexit
11671168
libc.src.stdlib.exit
11681169
libc.src.stdlib.getenv
1170+
libc.src.stdlib.ignore_handler_s
11691171
libc.src.stdlib.quick_exit
11701172
libc.src.stdlib.set_constraint_handler_s
1171-
libc.src.stdlib.abort_handler_s
1172-
libc.src.stdlib.ignore_handler_s
11731173

11741174
# signal.h entrypoints
11751175
libc.src.signal.kill

0 commit comments

Comments
 (0)