about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-04-24 19:40:25 -0400
committerGitHub <noreply@github.com>2024-04-24 19:40:25 -0400
commit8bd5f8180b3b42f73f1e4be3eea06b1c4e1d46e5 (patch)
tree005101c77d983c4f49ab7e2ec9d99ce653cc4498 /pkgs
parentcc73d4cce4e7d6f8a8c07e14d8fa1a1cac7cde9d (diff)
parentb31cb6f9061a3fb3fc1b42784f7447479aad67df (diff)
Merge pull request #306319 from sequencer/patch-3
circt: disable bundled llvm check
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/circt/circt-llvm.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/compilers/circt/circt-llvm.nix b/pkgs/development/compilers/circt/circt-llvm.nix
index b3005af55fbbd..a21b82d93376e 100644
--- a/pkgs/development/compilers/circt/circt-llvm.nix
+++ b/pkgs/development/compilers/circt/circt-llvm.nix
@@ -50,7 +50,9 @@
       --replace "$out/bin/llvm-config" "$dev/bin/llvm-config" # patch path for llvm-config
   '';
 
-  doCheck = true;
+  # circt only use the mlir part of llvm, occasionally there are some unrelated failure from llvm,
+  # disable the llvm check, but keep the circt check enabled.
+  doCheck = false;
   checkTarget = "check-mlir";
 
   meta = llvm.meta // {