[Mlir-commits] [mlir] 78c7118 - [mlir] Make mlir-cpu-runner depend on native instead of X86

Nicolas Vasilache llvmlistbot at llvm.org
Mon Nov 30 07:11:52 PST 2020


Author: Nicolas Vasilache
Date: 2020-11-30T15:11:34Z
New Revision: 78c71187465a8e877d2e07d462b45a19363fb782

URL: https://github.com/llvm/llvm-project/commit/78c71187465a8e877d2e07d462b45a19363fb782
DIFF: https://github.com/llvm/llvm-project/commit/78c71187465a8e877d2e07d462b45a19363fb782.diff

LOG: [mlir] Make mlir-cpu-runner depend on native instead of X86

Added: 
    

Modified: 
    mlir/tools/mlir-cpu-runner/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/tools/mlir-cpu-runner/CMakeLists.txt b/mlir/tools/mlir-cpu-runner/CMakeLists.txt
index 539f9914a91a..c749b8c40b09 100644
--- a/mlir/tools/mlir-cpu-runner/CMakeLists.txt
+++ b/mlir/tools/mlir-cpu-runner/CMakeLists.txt
@@ -2,6 +2,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   Support
   nativecodegen
+  native
   )
 
 add_llvm_tool(mlir-cpu-runner
@@ -11,8 +12,6 @@ llvm_update_compile_flags(mlir-cpu-runner)
 get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
 target_link_libraries(mlir-cpu-runner PRIVATE
   ${dialect_libs}
-  LLVMAsmParser
-  LLVMX86AsmParser
   MLIRAnalysis
   MLIREDSC
   MLIRExecutionEngine


        


More information about the Mlir-commits mailing list