Skip to content

Commit f608ac2

Browse files
committed
[bazel] Actually port libc #91905
1 parent 7198c3d commit f608ac2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ libc_support_library(
129129

130130
############################ Type Proxy Header Files ###########################
131131

132+
libc_support_library(
133+
name = "types_clockid_t",
134+
hdrs = ["hdr/types/clockid_t.h"],
135+
)
136+
132137
libc_support_library(
133138
name = "types_fenv_t",
134139
hdrs = ["hdr/types/fenv_t.h"],
@@ -1154,6 +1159,7 @@ libc_support_library(
11541159
name = "__support_time",
11551160
hdrs = glob(["src/__support/time/*.h"]),
11561161
deps = [
1162+
":__support_common",
11571163
":hdr_time_macros",
11581164
":types_time_t",
11591165
],
@@ -1167,8 +1173,14 @@ libc_support_library(
11671173
"//conditions:default": ["@platforms//:incompatible"],
11681174
}),
11691175
deps = [
1176+
":__support_common",
1177+
":__support_cpp_expected",
1178+
":__support_error_or",
1179+
":__support_libc_assert",
11701180
":__support_time",
11711181
":hdr_time_macros",
1182+
":types_clockid_t",
1183+
":types_struct_timespec",
11721184
],
11731185
)
11741186

0 commit comments

Comments
 (0)