forked from OSchip/llvm-project
Bazel fixes for 81f2f4dfb2
This commit is contained in:
parent
070af48d13
commit
61e1581fa3
|
@ -8433,6 +8433,22 @@ cc_binary(
|
|||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "PDLLODS",
|
||||
srcs = glob(
|
||||
[
|
||||
"lib/Tools/PDLL/ODS/*.cpp",
|
||||
"lib/Tools/PDLL/ODS/*.h",
|
||||
],
|
||||
),
|
||||
hdrs = glob(["include/mlir/Tools/PDLL/ODS/*.h"]),
|
||||
includes = ["include"],
|
||||
deps = [
|
||||
":Support",
|
||||
"//llvm:Support",
|
||||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "PDLLAST",
|
||||
srcs = glob(
|
||||
|
@ -8481,9 +8497,11 @@ cc_library(
|
|||
includes = ["include"],
|
||||
deps = [
|
||||
":PDLLAST",
|
||||
":PDLLODS",
|
||||
":Support",
|
||||
":TableGen",
|
||||
"//llvm:Support",
|
||||
"//llvm:TableGen",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue