[Mlir-commits] [mlir] 6478caa - Tweak `mlir-linalg-ods-gen` library dependency: only MLIRIR is needed, not the entire parser (NFC)

Mehdi Amini llvmlistbot at llvm.org
Wed Sep 2 16:59:00 PDT 2020


Author: Mehdi Amini
Date: 2020-09-02T23:58:32Z
New Revision: 6478caa0340768e322b82690d987c039cb78550d

URL: https://github.com/llvm/llvm-project/commit/6478caa0340768e322b82690d987c039cb78550d
DIFF: https://github.com/llvm/llvm-project/commit/6478caa0340768e322b82690d987c039cb78550d.diff

LOG: Tweak `mlir-linalg-ods-gen` library dependency: only MLIRIR is needed, not the entire parser (NFC)

Added: 
    

Modified: 
    mlir/tools/mlir-linalg-ods-gen/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/tools/mlir-linalg-ods-gen/CMakeLists.txt b/mlir/tools/mlir-linalg-ods-gen/CMakeLists.txt
index 3736a18b2009..bc9a0c1f310a 100644
--- a/mlir/tools/mlir-linalg-ods-gen/CMakeLists.txt
+++ b/mlir/tools/mlir-linalg-ods-gen/CMakeLists.txt
@@ -7,6 +7,6 @@ add_llvm_tool(mlir-linalg-ods-gen
 )
 llvm_update_compile_flags(mlir-linalg-ods-gen)
 target_link_libraries(mlir-linalg-ods-gen PRIVATE
-  MLIRParser
   MLIRSupport
+  MLIRIR
   )


        


More information about the Mlir-commits mailing list