[libc-commits] [libc] 07cdf4a - [libc][obvious] fix missing type headers
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Mon Mar 20 16:43:14 PDT 2023
Author: Michael Jones
Date: 2023-03-20T16:43:09-07:00
New Revision: 07cdf4a10d783c6af31877cf3433e46c1527115c
URL: https://github.com/llvm/llvm-project/commit/07cdf4a10d783c6af31877cf3433e46c1527115c
DIFF: https://github.com/llvm/llvm-project/commit/07cdf4a10d783c6af31877cf3433e46c1527115c.diff
LOG: [libc][obvious] fix missing type headers
forgot to add wint_t and wchar_t type headers to the wchar
headergen definition.
Differential Revision: https://reviews.llvm.org/D146472
Added:
Modified:
libc/include/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/include/CMakeLists.txt b/libc/include/CMakeLists.txt
index 75ef824d2e3f..39b598824e24 100644
--- a/libc/include/CMakeLists.txt
+++ b/libc/include/CMakeLists.txt
@@ -475,6 +475,9 @@ add_gen_header(
DEPENDS
.llvm_libc_common_h
.llvm-libc-macros.wchar_macros
+ .llvm-libc-types.size_t
+ .llvm-libc-types.wint_t
+ .llvm-libc-types.wchar_t
)
if(NOT LLVM_LIBC_FULL_BUILD)
More information about the libc-commits
mailing list