[llvm] Fix bazel build issue I introduced in #166918 (PR #166921)

Karlo Basioli via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 7 02:29:47 PST 2025


https://github.com/basioli-k created https://github.com/llvm/llvm-project/pull/166921

None

>From 7fc3fb357ac0d04545f9730e173b9a6e06f1ee04 Mon Sep 17 00:00:00 2001
From: basioli-k <k.basioli at gmail.com>
Date: Fri, 7 Nov 2025 10:27:48 +0000
Subject: [PATCH] Fix bazel build issue I introduced with wrong paths

---
 utils/bazel/llvm-project-overlay/mlir/python/BUILD.bazel | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/utils/bazel/llvm-project-overlay/mlir/python/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/python/BUILD.bazel
index 48f728dd79e82..f1d1c0bbf8c9b 100644
--- a/utils/bazel/llvm-project-overlay/mlir/python/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/python/BUILD.bazel
@@ -1638,9 +1638,9 @@ gentbl_filegroup(
         "-bind-dialect=transform",
         "-dialect-extension=xegpu_transform",
     ]},
-    tblgen = "//third_party/llvm/llvm-project/mlir:mlir-tblgen",
+    tblgen = "//mlir:mlir-tblgen",
     td_file = "mlir/dialects/XeGPUTransformOps.td",
     deps = [
-        "//third_party/llvm/llvm-project/mlir:XeGPUTransformOpsTdFiles",
+        "//mlir:XeGPUTransformOpsTdFiles",
     ],
 )



More information about the llvm-commits mailing list