Skip to content

Commit eb04b69

Browse files
authored
[libc] Add misssing inttypes dependencies (llvm#150861)
This is a follow up of 9e79991. It attempts to fix the CI flakes we saw on fuchsia-linux-x64 builder.
1 parent 80e0d41 commit eb04b69

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

libc/src/stdio/baremetal/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ add_entrypoint_object(
7272
../scanf.h
7373
DEPENDS
7474
.scanf_internal
75+
libc.include.inttypes
7576
libc.src.stdio.scanf_core.scanf_main
7677
libc.src.__support.arg_list
7778
libc.src.__support.OSUtil.osutil

libc/src/stdio/scanf_core/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ add_header_library(
3535
core_structs.h
3636
DEPENDS
3737
.scanf_config
38+
libc.include.inttypes
3839
libc.src.__support.CPP.string_view
3940
libc.src.__support.CPP.bitset
4041
libc.src.__support.FPUtil.fp_bits
@@ -97,6 +98,7 @@ add_header_library(
9798
DEPENDS
9899
.reader
99100
.core_structs
101+
libc.include.inttypes
100102
libc.src.__support.common
101103
libc.src.__support.ctype_utils
102104
libc.src.__support.CPP.bitset

0 commit comments

Comments
 (0)