We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c6c8b commit bafd44bCopy full SHA for bafd44b
utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -5,6 +5,7 @@
5
# LLVM libc project.
6
load("@bazel_skylib//lib:selects.bzl", "selects")
7
load("@bazel_skylib//rules:common_settings.bzl", "string_flag")
8
+load("@rules_python//python:defs.bzl", "py_binary")
9
load(
10
":libc_build_rules.bzl",
11
"libc_function",
@@ -51,6 +52,14 @@ config_setting(
51
52
flag_values = {":mpfr": "system"},
53
)
54
55
+########################### Header Generation ##################################
56
+
57
+py_binary(
58
+ name = "hdrgen",
59
+ srcs = glob(["utils/hdrgen/hdrgen/**/*.py"]),
60
+ imports = ["utils/hdrgen"],
61
+)
62
63
################################## Base Config #################################
64
65
libc_support_library(
0 commit comments