forked from OSchip/llvm-project
[Bazel] Update for f8c6515554
Update Bazel for https://github.com/llvm/llvm-project/commit/f8c6515554 by splitting out an LLVMDWP library target.
This commit is contained in:
parent
3e2ad26b08
commit
25c02b32a4
|
@ -913,6 +913,23 @@ cc_library(
|
|||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "LLVMDWP",
|
||||
srcs = glob([
|
||||
"lib/DWP/*.cpp",
|
||||
"lib/DWP/*.h",
|
||||
]),
|
||||
hdrs = glob(["include/llvm/DWP/*.h"]),
|
||||
copts = llvm_copts,
|
||||
deps = [
|
||||
":DebugInfoDWARF",
|
||||
":MC",
|
||||
":Object",
|
||||
":Support",
|
||||
":Target",
|
||||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "TransformUtils",
|
||||
srcs = glob([
|
||||
|
@ -2726,11 +2743,9 @@ cc_binary(
|
|||
stamp = 0,
|
||||
deps = [
|
||||
":AllTargetsCodeGens",
|
||||
":DebugInfoDWARF",
|
||||
":LLVMDWP",
|
||||
":MC",
|
||||
":Object",
|
||||
":Support",
|
||||
":Target",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue