2019-10-05 01:30:54 +08:00
|
|
|
|
|
|
|
add_header(
|
|
|
|
llvm_libc_common_h
|
|
|
|
HDR
|
|
|
|
__llvm-libc-common.h
|
|
|
|
)
|
|
|
|
|
2019-12-05 15:17:14 +08:00
|
|
|
add_header(
|
|
|
|
libc_posix_types_h
|
|
|
|
HDR
|
|
|
|
__posix-types.h
|
|
|
|
)
|
|
|
|
|
2019-10-05 01:30:54 +08:00
|
|
|
add_header(
|
|
|
|
ctype_h
|
|
|
|
HDR
|
|
|
|
ctype.h
|
|
|
|
DEPENDS
|
|
|
|
llvm_libc_common_h
|
|
|
|
)
|
|
|
|
|
|
|
|
add_header(
|
|
|
|
math_h
|
|
|
|
HDR
|
|
|
|
math.h
|
|
|
|
DEPENDS
|
|
|
|
llvm_libc_common_h
|
|
|
|
)
|
|
|
|
|
2019-11-06 03:40:26 +08:00
|
|
|
add_gen_header(
|
2019-10-05 01:30:54 +08:00
|
|
|
string_h
|
2019-11-06 03:40:26 +08:00
|
|
|
DEF_FILE string.h.def
|
|
|
|
GEN_HDR string.h
|
2019-10-05 01:30:54 +08:00
|
|
|
DEPENDS
|
|
|
|
llvm_libc_common_h
|
|
|
|
)
|
2019-12-06 04:09:24 +08:00
|
|
|
|
|
|
|
add_gen_header(
|
|
|
|
errno_h
|
|
|
|
DEF_FILE errno.h.def
|
|
|
|
PARAMS
|
|
|
|
platform_errno=../config/${LIBC_TARGET_OS}/errno.h.in
|
|
|
|
GEN_HDR errno.h
|
|
|
|
DATA_FILES
|
|
|
|
../config/${LIBC_TARGET_OS}/errno.h.in
|
|
|
|
)
|
2019-12-05 15:17:14 +08:00
|
|
|
|
2020-02-21 03:05:34 +08:00
|
|
|
add_gen_header(
|
|
|
|
signal_h
|
|
|
|
DEF_FILE signal.h.def
|
|
|
|
PARAMS
|
|
|
|
platform_signal=../config/${LIBC_TARGET_OS}/signal.h.in
|
|
|
|
GEN_HDR signal.h
|
|
|
|
DATA_FILES
|
|
|
|
../config/${LIBC_TARGET_OS}/signal.h.in
|
|
|
|
)
|
|
|
|
|
2019-12-05 15:17:14 +08:00
|
|
|
# TODO: Not all platforms will have a include/sys directory. Add the sys
|
|
|
|
# directory and the targets for sys/*.h files conditional to the OS requiring
|
|
|
|
# them.
|
|
|
|
file(MAKE_DIRECTORY "sys")
|
|
|
|
|
|
|
|
add_gen_header(
|
|
|
|
sys_mman_h
|
|
|
|
DEF_FILE sys/mman.h.def
|
|
|
|
GEN_HDR sys/mman.h
|
|
|
|
DEPENDS
|
|
|
|
libc_posix_types_h
|
2020-01-08 05:46:12 +08:00
|
|
|
llvm_libc_common_h
|
2019-12-05 15:17:14 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
add_gen_header(
|
|
|
|
sys_syscall_h
|
|
|
|
DEF_FILE sys/syscall.h.def
|
|
|
|
GEN_HDR sys/syscall.h
|
|
|
|
PARAMS
|
|
|
|
syscall_numbers=../config/${LIBC_TARGET_OS}/syscall_numbers.h.inc
|
|
|
|
DATA_FILES
|
|
|
|
../config/${LIBC_TARGET_OS}/syscall_numbers.h.inc
|
|
|
|
)
|