From c5abd6b6c941585c5113e7c13f4c73013fe75618 Mon Sep 17 00:00:00 2001 From: Nicolas Vasilache Date: Mon, 29 Apr 2019 10:30:57 -0700 Subject: [PATCH] Link MLIRSupport to IR in OSS The missing dependency breaks linking on Linux. -- PiperOrigin-RevId: 245773637 --- mlir/lib/IR/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.7.4