[llvm] [mlir][bazel] add alwayslink=True to mlir-runner utils (PR #133787)
Jeremy Kun via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 13:07:37 PDT 2025
https://github.com/j2kun created https://github.com/llvm/llvm-project/pull/133787
MacOS platforms using mlir-runner in lit tests consistently hit the following error:
```
# .---command stderr------------
# | JIT session error: Symbols not found: [ __mlir_ciface_printMemrefI32 ]
# | Error: Failed to materialize symbols: { (main, { __mlir_printMemrefI32, ... }) }
# `-----------------------------
```
https://github.com/google/heir/issues/1521#issuecomment-2751303404 confirms the issue is fixed by using `alwayslink` on these two targets, and I confirmed on a separate Apple M1 (OSX version Sequoia 15.3.2.).
I'm not an expert on the mlir runner internals, but given the mlir-runner is purely for testing, and alwayslink at worst adds some overhead by not removing symbols, it seems low risk.
>From 26b78564564abb881bd51d80d3ec5e1a6b295224 Mon Sep 17 00:00:00 2001
From: Jeremy Kun <jkun at google.com>
Date: Mon, 31 Mar 2025 12:57:22 -0700
Subject: [PATCH] [mlir][bazel] add alwayslink=True to mlir-runner utils
---
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 2 ++
1 file changed, 2 insertions(+)
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 40073eb59fd7a..0c89b7bf18e0f 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -10330,6 +10330,7 @@ cc_library(
":mlir_float16_utils",
"//llvm:Support",
],
+ alwayslink = True,
)
# Indirection to avoid 'libmlir_c_runner_utils.so' filename clash.
@@ -10359,6 +10360,7 @@ cc_library(
":mlir_c_runner_utils",
":mlir_float16_utils",
],
+ alwayslink = True,
)
# Indirection to avoid 'libmlir_runner_utils.so' filename clash.
More information about the llvm-commits
mailing list