[Mlir-commits] [mlir] 4902c3b - [mlir][arith] Attempt to fix shared libs build for EmulateWideInt

Jakub Kuderski llvmlistbot at llvm.org
Thu Sep 8 12:04:41 PDT 2022


Author: Jakub Kuderski
Date: 2022-09-08T15:02:55-04:00
New Revision: 4902c3b7f89a3351512b679cd6220fc55c8b3d2d

URL: https://github.com/llvm/llvm-project/commit/4902c3b7f89a3351512b679cd6220fc55c8b3d2d
DIFF: https://github.com/llvm/llvm-project/commit/4902c3b7f89a3351512b679cd6220fc55c8b3d2d.diff

LOG: [mlir][arith] Attempt to fix shared libs build for EmulateWideInt

Add missing CMake dependencies.

Original change: https://reviews.llvm.org/D133135

Added: 
    

Modified: 
    mlir/lib/Dialect/Arithmetic/Transforms/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Dialect/Arithmetic/Transforms/CMakeLists.txt b/mlir/lib/Dialect/Arithmetic/Transforms/CMakeLists.txt
index 0b56659287738..d36b27e036fc7 100644
--- a/mlir/lib/Dialect/Arithmetic/Transforms/CMakeLists.txt
+++ b/mlir/lib/Dialect/Arithmetic/Transforms/CMakeLists.txt
@@ -15,10 +15,13 @@ add_mlir_dialect_library(MLIRArithmeticTransforms
   MLIRAnalysis
   MLIRArithmeticDialect
   MLIRBufferizationDialect
+  MLIRFuncDialect
   MLIRBufferizationTransforms
+  MLIRVectorDialect
   MLIRInferIntRangeInterface
   MLIRIR
   MLIRMemRefDialect
   MLIRPass
   MLIRTransforms
+  MLIRTransformUtils
   )


        


More information about the Mlir-commits mailing list