[PATCH] D78303: [MLIR] Fix MLIR build - add missing CMake dependency
Uday Bondhugula via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 16 08:21:59 PDT 2020
bondhugula created this revision.
bondhugula added a reviewer: mehdi_amini.
Herald added subscribers: llvm-commits, frgossen, grosul1, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, jpienaar, rriddle, mgorny.
Herald added a reviewer: nicolasvasilache.
Herald added a project: LLVM.
This will fix failure using a linker sensitive to the order in which
libraries are passed.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D78303
Files:
mlir/lib/Dialect/Affine/Utils/CMakeLists.txt
Index: mlir/lib/Dialect/Affine/Utils/CMakeLists.txt
===================================================================
--- mlir/lib/Dialect/Affine/Utils/CMakeLists.txt
+++ mlir/lib/Dialect/Affine/Utils/CMakeLists.txt
@@ -8,4 +8,5 @@
target_link_libraries(MLIRAffineUtils
PUBLIC
MLIRAffine
+ MLIRTransformUtils
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D78303.258060.patch
Type: text/x-patch
Size: 324 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200416/ff82e5ed/attachment.bin>
More information about the llvm-commits
mailing list