
Address review comments in #130407. This patch is already covered by existing locale test cases.
219 lines
4.3 KiB
CMake
219 lines
4.3 KiB
CMake
function(add_proxy_header_library target_name)
|
|
cmake_parse_arguments(
|
|
"ADD_PROXY_HEADER"
|
|
"" # Optional arguments
|
|
"" # Single value arguments
|
|
"DEPENDS;FULL_BUILD_DEPENDS" # Multi-value arguments
|
|
${ARGN}
|
|
)
|
|
|
|
set(deps "")
|
|
if(ADD_PROXY_HEADER_DEPENDS)
|
|
list(APPEND deps ${ADD_PROXY_HEADER_DEPENDS})
|
|
endif()
|
|
|
|
if(LLVM_LIBC_FULL_BUILD AND ADD_PROXY_HEADER_FULL_BUILD_DEPENDS)
|
|
list(APPEND deps ${ADD_PROXY_HEADER_FULL_BUILD_DEPENDS})
|
|
endif()
|
|
|
|
add_header_library(
|
|
${target_name}
|
|
${ADD_PROXY_HEADER_UNPARSED_ARGUMENTS}
|
|
DEPENDS ${deps}
|
|
)
|
|
endfunction()
|
|
|
|
add_proxy_header_library(
|
|
math_macros
|
|
HDRS
|
|
math_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.math_macros
|
|
libc.include.math
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
math_function_macros
|
|
HDRS
|
|
math_function_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.math_function_macros
|
|
libc.include.math
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
errno_macros
|
|
HDRS
|
|
errno_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.errno
|
|
libc.include.llvm-libc-macros.error_number_macros
|
|
libc.include.llvm-libc-macros.generic_error_number_macros
|
|
)
|
|
|
|
add_header_library(fcntl_overlay HDRS fcntl_overlay.h)
|
|
add_proxy_header_library(
|
|
fcntl_macros
|
|
HDRS
|
|
fcntl_macros.h
|
|
DEPENDS
|
|
.fcntl_overlay
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.fcntl_macros
|
|
libc.include.fcntl
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
fenv_macros
|
|
HDRS
|
|
fenv_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.fenv_macros
|
|
libc.include.fenv
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
signal_macros
|
|
HDRS
|
|
signal_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.signal_macros
|
|
libc.include.signal
|
|
)
|
|
|
|
add_header_library(stdlib_overlay HDRS stdlib_overlay.h)
|
|
|
|
add_proxy_header_library(
|
|
stdlib_macros
|
|
HDRS
|
|
stdlib_macros.h
|
|
DEPENDS
|
|
.stdlib_overlay
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.stdlib
|
|
libc.include.llvm-libc-macros.stdlib_macros
|
|
)
|
|
|
|
add_header_library(stdio_overlay HDRS stdio_overlay.h)
|
|
|
|
add_proxy_header_library(
|
|
stdio_macros
|
|
HDRS
|
|
stdio_macros.h
|
|
DEPENDS
|
|
.stdio_overlay
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.stdio
|
|
libc.include.llvm-libc-macros.stdio_macros
|
|
libc.include.llvm-libc-macros.file_seek_macros
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
sys_epoll_macros
|
|
HDRS
|
|
sys_epoll_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.sys_epoll
|
|
libc.include.llvm-libc-macros.sys_epoll_macros
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
sys_stat_macros
|
|
HDRS
|
|
sys_stat_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.sys_stat
|
|
libc.include.llvm-libc-macros.sys_stat_macros
|
|
)
|
|
|
|
add_header_library(unistd_overlay HDRS unistd_overlay.h)
|
|
add_proxy_header_library(
|
|
unistd_macros
|
|
HDRS
|
|
unistd_macros.h
|
|
DEPENDS
|
|
.unistd_overlay
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.unistd
|
|
libc.include.llvm-libc-macros.unistd_macros
|
|
)
|
|
|
|
if (WIN32)
|
|
set(windows_addtional_time_macros libc.include.llvm-libc-macros.windows.time_macros_ext)
|
|
else()
|
|
set(windows_addtional_time_macros "")
|
|
endif()
|
|
|
|
add_proxy_header_library(
|
|
time_macros
|
|
HDRS
|
|
time_macros.h
|
|
DEPENDS
|
|
${windows_addtional_time_macros}
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.time
|
|
libc.include.llvm-libc-macros.time_macros
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
float_macros
|
|
HDRS
|
|
float_macros.h
|
|
DEPENDS
|
|
libc.include.llvm-libc-macros.float_macros
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.float
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
limits_macros
|
|
HDRS
|
|
limits_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.limits
|
|
libc.include.llvm-libc-macros.limits_macros
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
link_macros
|
|
HDRS
|
|
link_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.link_macros
|
|
libc.include.link
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
locale_macros
|
|
HDRS
|
|
locale_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.locale_macros
|
|
libc.include.locale
|
|
)
|
|
|
|
add_proxy_header_library(
|
|
sys_auxv_macros
|
|
HDRS
|
|
sys_auxv_macros.h
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.sys_auxv_macros
|
|
libc.include.sys_auxv
|
|
)
|
|
|
|
add_header_library(wchar_overlay HDRS wchar_overlay.h)
|
|
|
|
add_proxy_header_library(
|
|
wchar_macros
|
|
HDRS
|
|
wchar_macros.h
|
|
DEPENDS
|
|
.wchar_overlay
|
|
FULL_BUILD_DEPENDS
|
|
libc.include.llvm-libc-macros.wchar_macros
|
|
libc.include.wchar
|
|
)
|
|
|
|
add_subdirectory(types)
|
|
add_subdirectory(func)
|