[bazel] Fix modules build for llvm-libc (speculative) (#143995)

This commit is contained in:
Reid Kleckner
2025-06-12 16:52:32 -07:00
committed by GitHub
parent 70f44ec6fe
commit e1bb35d067
2 changed files with 8 additions and 0 deletions

View File

@@ -1619,6 +1619,10 @@ libc_header_library(
libc_support_library(
name = "__support_libc_errno",
hdrs = ["src/__support/libc_errno.h"],
deps = [
":__support_macros_config",
":hdr_errno_macros",
],
)
libc_support_library(
@@ -1981,6 +1985,9 @@ libc_support_library(
libc_support_library(
name = "__support_math_exp_float_constants",
hdrs = ["src/__support/math/exp_float_constants.h"],
deps = [
":__support_macros_config",
],
)
libc_support_library(

View File

@@ -58,6 +58,7 @@ libc_test_library(
"//libc:__support_fputil_fp_bits",
"//libc:__support_fputil_fpbits_str",
"//libc:__support_fputil_rounding_mode",
"//libc:__support_libc_errno",
"//libc:__support_macros_config",
"//libc:__support_macros_properties_architectures",
"//libc:__support_macros_properties_types",