From: Nicolas Vasilache Date: Mon, 29 Apr 2019 17:30:57 +0000 (-0700) Subject: Link MLIRSupport to IR in OSS X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5abd6b6c941585c5113e7c13f4c73013fe75618;p=platform%2Fupstream%2Fllvm.git Link MLIRSupport to IR in OSS The missing dependency breaks linking on Linux. -- PiperOrigin-RevId: 245773637 --- diff --git a/mlir/lib/IR/CMakeLists.txt b/mlir/lib/IR/CMakeLists.txt index e4390416..6bb1265 100644 --- a/mlir/lib/IR/CMakeLists.txt +++ b/mlir/lib/IR/CMakeLists.txt @@ -6,4 +6,4 @@ add_llvm_library(MLIRIR ${MLIR_MAIN_INCLUDE_DIR}/mlir/IR ) add_dependencies(MLIRIR MLIRSupport LLVMSupport) -target_link_libraries(MLIRIR LLVMSupport) +target_link_libraries(MLIRIR MLIRSupport LLVMSupport)