[llvm] [mlir:x86vector:transform] Fix bazel build (again) after #168074. (PR #169316)
Ingo Müller via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 24 03:22:59 PST 2025
https://github.com/ingomueller-net updated https://github.com/llvm/llvm-project/pull/169316
>From 3d276e4c7b13ce8d247783993bbe93e6775aa068 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ingo=20M=C3=BCller?= <ingomueller at google.com>
Date: Mon, 24 Nov 2025 11:04:04 +0000
Subject: [PATCH] [mlir:x86vector:transform] Fix bazel build (again) after
#168074.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This is a second attempt to fix the bazel build (after the first in
#169294, which was accidentally merged before CI passed). In the first
attempt, not all bazel dependencies had been added; this PR should add
them all and make CI pass.
Signed-off-by: Ingo Müller <ingomueller at google.com>
---
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index b7fe0fa898c21..6d2eedbfe2415 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2610,8 +2610,13 @@ cc_library(
hdrs = glob(["include/mlir/Dialect/X86Vector/TransformOps/*.h"]),
includes = ["include"],
deps = [
+ ":IR",
+ ":LLVMCommonConversion",
+ ":LLVMDialect",
":TransformDialect",
+ ":TransformDialectInterfaces",
":VectorDialect",
+ ":X86VectorDialect",
":X86VectorTransformOpsIncGen",
":X86VectorTransforms",
],
@@ -2628,6 +2633,9 @@ cc_library(
":LLVMCommonConversion",
":LLVMDialect",
":LinalgDialect",
+ ":LinalgInterfaces",
+ ":Pass",
+ ":TransformUtils",
":VectorDialect",
":VectorUtils",
":X86VectorDialect",
More information about the llvm-commits
mailing list