[Mlir-commits] [mlir] 45901eb - [mlir] Check libraries linked into standalone-opt

Marius Brehler llvmlistbot at llvm.org
Tue Aug 18 13:20:00 PDT 2020


Author: Marius Brehler
Date: 2020-08-18T22:19:37+02:00
New Revision: 45901ebd430566a1b4ed7ae954a1d6d1722f3276

URL: https://github.com/llvm/llvm-project/commit/45901ebd430566a1b4ed7ae954a1d6d1722f3276
DIFF: https://github.com/llvm/llvm-project/commit/45901ebd430566a1b4ed7ae954a1d6d1722f3276.diff

LOG: [mlir] Check libraries linked into standalone-opt

Adds a call to mlir_check_all_link_libraries() to check all libraries
linked into standalone-opt.

Added: 
    

Modified: 
    mlir/examples/standalone/standalone-opt/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/mlir/examples/standalone/standalone-opt/CMakeLists.txt b/mlir/examples/standalone/standalone-opt/CMakeLists.txt
index 854fd556ae86..06bbb4712645 100644
--- a/mlir/examples/standalone/standalone-opt/CMakeLists.txt
+++ b/mlir/examples/standalone/standalone-opt/CMakeLists.txt
@@ -10,3 +10,5 @@ add_llvm_executable(standalone-opt standalone-opt.cpp)
 
 llvm_update_compile_flags(standalone-opt)
 target_link_libraries(standalone-opt PRIVATE ${LIBS})
+
+mlir_check_all_link_libraries(standalone-opt)


        


More information about the Mlir-commits mailing list