From: Michael Jones Date: Tue, 21 Mar 2023 18:12:05 +0000 (-0700) Subject: [libc] Re-enable wctob with fixes X-Git-Tag: upstream/17.0.6~13279 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0de24cb0d5512ae4c69def6b91ec345780f7882;p=platform%2Fupstream%2Fllvm.git [libc] Re-enable wctob with fixes The stdio test failures were due to headers potentially not being built in the correct order. This should set up the dependencies correctly. Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D146551 --- diff --git a/libc/config/linux/x86_64/entrypoints.txt b/libc/config/linux/x86_64/entrypoints.txt index 5c0b310..9936bf7 100644 --- a/libc/config/linux/x86_64/entrypoints.txt +++ b/libc/config/linux/x86_64/entrypoints.txt @@ -197,7 +197,7 @@ set(TARGET_LIBC_ENTRYPOINTS libc.src.unistd.write # wchar.h entrypoints - # libc.src.wchar.wctob + libc.src.wchar.wctob ) set(TARGET_LIBM_ENTRYPOINTS diff --git a/libc/include/CMakeLists.txt b/libc/include/CMakeLists.txt index 9c48fd7..bd2458e 100644 --- a/libc/include/CMakeLists.txt +++ b/libc/include/CMakeLists.txt @@ -184,6 +184,7 @@ add_gen_header( .llvm-libc-macros.file_seek_macros .llvm-libc-macros.stdio_macros .llvm-libc-types.size_t + .llvm-libc-types.ssize_t .llvm-libc-types.FILE .llvm-libc-types.cookie_io_functions_t ) diff --git a/libc/include/llvm-libc-types/CMakeLists.txt b/libc/include/llvm-libc-types/CMakeLists.txt index 1df2e7c..289307b 100644 --- a/libc/include/llvm-libc-types/CMakeLists.txt +++ b/libc/include/llvm-libc-types/CMakeLists.txt @@ -1,5 +1,6 @@ add_header(off64_t HDR off64_t.h) add_header(size_t HDR size_t.h) +add_header(ssize_t HDR ssize_t.h) add_header(__atfork_callback_t HDR __atfork_callback_t.h) add_header(__bsearchcompare_t HDR __bsearchcompare_t.h) add_header(__call_once_func_t HDR __call_once_func_t.h) @@ -19,7 +20,7 @@ add_header(cc_t HDR cc_t.h) add_header(clock_t HDR clock_t.h) add_header(clockid_t HDR clockid_t.h) add_header(cnd_t HDR cnd_t.h) -add_header(cookie_io_functions_t HDR cookie_io_functions_t.h DEPENDS .off64_t) +add_header(cookie_io_functions_t HDR cookie_io_functions_t.h DEPENDS .off64_t .ssize_t) add_header(cpu_set_t HDR cpu_set_t.h) add_header(double_t HDR double_t.h) add_header(DIR HDR DIR.h) @@ -58,7 +59,6 @@ add_header(suseconds_t HDR suseconds_t.h) add_header(struct_timeval HDR struct_timeval.h DEPENDS .suseconds_t .time_t) add_header(struct_rlimit HDR struct_rlimit.h DEPENDS .rlim_t) add_header(struct_rusage HDR struct_rusage.h DEPENDS .struct_timeval) -add_header(ssize_t HDR ssize_t.h) add_header(struct_dirent HDR struct_dirent.h DEPENDS .ino_t .off_t) add_header(union_sigval HDR union_sigval.h) add_header(siginfo_t HDR siginfo_t.h DEPENDS .union_sigval .pid_t .uid_t) diff --git a/libc/src/wchar/CMakeLists.txt b/libc/src/wchar/CMakeLists.txt index 5cf980e..7af881d 100644 --- a/libc/src/wchar/CMakeLists.txt +++ b/libc/src/wchar/CMakeLists.txt @@ -7,5 +7,6 @@ add_entrypoint_object( wctob.h DEPENDS libc.include.stdio + libc.include.wchar libc.src.__support.wctype_utils )