Skip to content

Commit

Permalink
[bazel][lldb] "Fix" the build after b852fb1
Browse files Browse the repository at this point in the history
b852fb1 split out ValueObject, but it's
still all a big pile of dependency spaghetti so just build it with Core.
  • Loading branch information
d0k committed Oct 25, 2024
1 parent 43dda4b commit 6854ad9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions utils/bazel/llvm-project-overlay/lldb/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,10 @@ gentbl_cc_library(

cc_library(
name = "CoreHeaders",
hdrs = glob(["include/lldb/Core/**/*.h"]),
hdrs = glob([
"include/lldb/Core/**/*.h",
"include/lldb/ValueObject/**/*.h", # This should be its own library.
]),
strip_include_prefix = "include",
deps = [
":BreakpointHeaders",
Expand All @@ -627,8 +630,14 @@ cc_library(

cc_library(
name = "Core",
srcs = glob(["source/Core/**/*.cpp"]),
hdrs = glob(["include/lldb/Core/**/*.h"]),
srcs = glob([
"source/Core/**/*.cpp",
"source/ValueObject/**/*.cpp", # This should be its own library.
]),
hdrs = glob([
"include/lldb/Core/**/*.h",
"include/lldb/ValueObject/**/*.h", # This should be its own library.
]),
strip_include_prefix = "include",
deps = [
":BreakpointHeaders",
Expand Down

0 comments on commit 6854ad9

Please sign in to comment.