-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[CIR] Add mlir-translate to CMake #146608
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@llvm/pr-subscribers-clang Author: None (Andres-Salamanca) ChangesThis PR adds the The following test was failing when running The failure occurred because Full diff: https://github.com/llvm/llvm-project/pull/146608.diff 1 Files Affected:
diff --git a/clang/test/CMakeLists.txt b/clang/test/CMakeLists.txt
index 483deb0c1b51d..416af9ab4d0aa 100644
--- a/clang/test/CMakeLists.txt
+++ b/clang/test/CMakeLists.txt
@@ -114,6 +114,7 @@ if(CLANG_ENABLE_CIR)
list(APPEND CLANG_TEST_DEPS
cir-opt
cir-translate
+ mlir-translate
)
endif()
|
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/169/builds/12732 Here is the relevant piece of the build log for the reference |
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/207/builds/3269 Here is the relevant piece of the build log for the reference |
This PR adds the
mlir-translatedependency to CIR.The following test was failing when running
ninja check-clang-cir:The failure occurred because
mlir-translatewas not being built as part of the CIR test dependencies. This PR ensures that the target is properly built so the test can run successfully.