[PATCH] D72821: [mlir] Add missing dependency on LinalgUtils
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 15 19:11:18 PST 2020
GMNGeoffrey created this revision.
GMNGeoffrey added a reviewer: mehdi_amini.
Herald added subscribers: llvm-commits, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, jpienaar, rriddle, mgorny.
Herald added a reviewer: nicolasvasilache.
Herald added a project: LLVM.
GMNGeoffrey added a comment.
This is my first contribution now that MLIR has moved to the monorepo. Feedback on what I got wrong welcome
This missing dependency causes link-time failures in binaries
including LinalgTransforms. We've added the dependency
further up, where we use this library in our project
(https://github.com/google/iree/commit/df6b77a46efa939a496012a186d3d94dec35d8c3),
but it more properly belongs here.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D72821
Files:
mlir/lib/Dialect/Linalg/Transforms/CMakeLists.txt
Index: mlir/lib/Dialect/Linalg/Transforms/CMakeLists.txt
===================================================================
--- mlir/lib/Dialect/Linalg/Transforms/CMakeLists.txt
+++ mlir/lib/Dialect/Linalg/Transforms/CMakeLists.txt
@@ -7,6 +7,7 @@
MLIRLinalgAnalysis
MLIRLinalgEDSC
MLIRLinalgOps
+ MLIRLinalgUtils
MLIRLoopOps
MLIRPass
MLIRStandardOps
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72821.238407.patch
Type: text/x-patch
Size: 371 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200116/abd78d9a/attachment-0001.bin>
More information about the llvm-commits
mailing list