[Mlir-commits] [mlir] [mlir] Workaround for export lib generation on Windows for `mlir_arm_sme_abi_stubs` (PR #73147)

Ivan Butygin llvmlistbot at llvm.org
Wed Nov 22 10:26:33 PST 2023


================
@@ -18,6 +33,10 @@
 // a path to an alternate implementation.
 
 extern "C" {
+void MLIR_ARNSMEABISTUBS_EXPORT _mlir_arm_sme_abi_stubs_exportstub() {
+  // TODO: is function is not used, need at least one exported symbol on Windows
+  // to generate export library.
+}
----------------
Hardcode84 wrote:

This makes sense, although I can't test it immediately on non-windows, does those tests run on GH precommit runners?

https://github.com/llvm/llvm-project/pull/73147


More information about the Mlir-commits mailing list