Skip to content

Commit

Permalink
[mlir][bazel] Really fix BUILD after d041343.
Browse files Browse the repository at this point in the history
  • Loading branch information
chsigg committed Jun 4, 2024
1 parent 22dcdcc commit 4ab7354
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10071,20 +10071,13 @@ gentbl_cc_library(

cc_library(
name = "OpenACCDialect",
srcs = glob(
[
"lib/Dialect/OpenACC/IR/*.cpp",
],
),
srcs = glob(["lib/Dialect/OpenACC/IR/*.cpp"]),
hdrs = glob(
[
"include/mlir/Dialect/OpenACC/*.h",
],
exclude =
[
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.h",
],
),
include = ["include/mlir/Dialect/OpenACC/*.h"],
exclude = ["include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.h"],
) + [
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/OpenACCMPOpsInterfaces.h",
],
includes = ["include"],
textual_hdrs = [
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.h",
Expand Down

0 comments on commit 4ab7354

Please sign in to comment.