[llvm] [bazel] Port c63112a9118277a20ae440f3f69189c0937e8f4d (PR #110706)
Keith Smiley via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 1 10:34:42 PDT 2024
https://github.com/keith created https://github.com/llvm/llvm-project/pull/110706
None
>From 06c25fff7833644d4e9bfb7c9402639fc406e7bc Mon Sep 17 00:00:00 2001
From: Keith Smiley <keithbsmiley at gmail.com>
Date: Tue, 1 Oct 2024 17:30:03 +0000
Subject: [PATCH] [bazel] Port c63112a9118277a20ae440f3f69189c0937e8f4d
---
utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index 140d48c8f96848..d1c8cae256f600 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -155,6 +155,11 @@ libc_support_library(
hdrs = ["hdr/limits_macros.h"],
)
+libc_support_library(
+ name = "hdr_stdio_overlay",
+ hdrs = ["hdr/stdio_overlay.h"],
+)
+
############################ Type Proxy Header Files ###########################
libc_support_library(
@@ -749,6 +754,7 @@ libc_support_library(
":__support_threads_mutex",
":errno",
":hdr_stdio_macros",
+ ":hdr_stdio_overlay",
":types_off_t",
],
)
@@ -761,6 +767,7 @@ libc_support_library(
":__support_error_or",
":__support_osutil_syscall",
":errno",
+ ":hdr_stdio_overlay",
":types_off_t",
],
)
@@ -3893,9 +3900,9 @@ libc_support_library(
":__support_ctype_utils",
":__support_fputil_fp_bits",
":__support_str_to_integer",
+ ":errno",
":printf_config",
":printf_core_structs",
- ":errno"
],
)
@@ -4104,6 +4111,7 @@ libc_function(
":__support_common",
":__support_osutil_syscall",
":errno",
+ ":hdr_stdio_overlay",
":types_FILE",
],
)
More information about the llvm-commits
mailing list