[bazel] Fix parse_headers in bolt (#184648)

This commit is contained in:
Keith Smiley 2026-03-04 09:34:37 -08:00 committed by GitHub
parent 56a53550d3
commit 937bf9cef6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -161,6 +161,7 @@ cc_library(
cc_library(
name = "ProfileHeaders",
hdrs = glob(["include/bolt/Profile/*.h"]),
features = ["-parse_headers"], # Otherwise would cause circular dependency
includes = ["include"],
visibility = ["//visibility:private"],
)
@ -301,6 +302,7 @@ cc_library(
"//llvm:DebugInfoDWARFLowLevel",
"//llvm:Demangle",
"//llvm:ExecutionEngine",
"//llvm:JITLink",
"//llvm:MC",
"//llvm:MCDisassembler",
"//llvm:MCParser",