2019-10-05 01:30:54 +08:00
|
|
|
|
|
|
|
add_entrypoint_library(
|
|
|
|
llvmlibc
|
|
|
|
DEPENDS
|
2019-12-06 04:09:24 +08:00
|
|
|
# errno.h entrypoints
|
|
|
|
__errno_location
|
|
|
|
|
2019-10-05 01:30:54 +08:00
|
|
|
# string.h entrypoints
|
|
|
|
strcpy
|
|
|
|
strcat
|
2019-12-05 15:17:14 +08:00
|
|
|
|
|
|
|
# sys/mman.h entrypoints
|
|
|
|
mmap
|
|
|
|
munmap
|
2020-02-21 03:05:34 +08:00
|
|
|
|
|
|
|
# signal.h entrypoints
|
|
|
|
raise
|
2020-03-02 16:47:21 +08:00
|
|
|
sigaddset
|
|
|
|
sigemptyset
|
|
|
|
sigprocmask
|
2020-03-06 03:21:18 +08:00
|
|
|
|
|
|
|
# stdlib.h entrypoints
|
|
|
|
_Exit
|
|
|
|
abort
|
2019-10-05 01:30:54 +08:00
|
|
|
)
|
2019-10-16 04:25:36 +08:00
|
|
|
|
|
|
|
add_entrypoint_library(
|
|
|
|
llvmlibm
|
|
|
|
DEPENDS
|
|
|
|
# math.h entrypoints
|
|
|
|
round
|
|
|
|
)
|
|
|
|
|
|
|
|
add_redirector_library(
|
|
|
|
llvmlibc_redirectors
|
|
|
|
DEPENDS
|
|
|
|
round_redirector
|
|
|
|
)
|