projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d86ad7
)
Add missing CMake dependency from libAnalysis to the Vector dialect
author
Mehdi Amini
<aminim@google.com>
Tue, 17 Sep 2019 07:38:28 +0000
(
00:38
-0700)
committer
A. Unique TensorFlower
<gardener@tensorflow.org>
Tue, 17 Sep 2019 07:39:00 +0000
(
00:39
-0700)
Fixes tensorflow/mlir#138
PiperOrigin-RevId:
269509668
mlir/lib/Analysis/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/mlir/lib/Analysis/CMakeLists.txt
b/mlir/lib/Analysis/CMakeLists.txt
index e2b1d126cdfc3f215b53388a603986e7de737a93..ff612c98f92f60cd3546ea948cbae8d5545b03e2 100644
(file)
--- a/
mlir/lib/Analysis/CMakeLists.txt
+++ b/
mlir/lib/Analysis/CMakeLists.txt
@@
-16,5
+16,5
@@
add_llvm_library(MLIRAnalysis STATIC
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Analysis
)
-add_dependencies(MLIRAnalysis MLIRAffineOps MLIRLoopOps)
-target_link_libraries(MLIRAnalysis MLIRAffineOps MLIRLoopOps)
+add_dependencies(MLIRAnalysis MLIRAffineOps MLIRLoopOps
MLIRVectorOps
)
+target_link_libraries(MLIRAnalysis MLIRAffineOps MLIRLoopOps
MLIRVectorOps
)