mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
circt: fix build for x86_64-darwin on rosetta (#355368)
This commit is contained in:
commit
1e21561aac
@ -67,12 +67,14 @@ stdenv.mkDerivation rec {
|
||||
# Disable some tests on x86_64-darwin
|
||||
++ lib.optionals (stdenv.hostPlatform.system == "x86_64-darwin") [
|
||||
# These test seem to pass on hydra (rosetta) but not on x86_64-darwin machines
|
||||
"CIRCT :: Target/ExportSMTLIB/attributes.mlir"
|
||||
"CIRCT :: Target/ExportSMTLIB/basic.mlir"
|
||||
"CIRCT :: circt-bmc/comb-errors.mlir"
|
||||
"CIRCT :: circt-bmc/seq-errors.mlir"
|
||||
# This test was having issues with rosetta
|
||||
"CIRCT :: Dialect/SMT/basic.mlir"
|
||||
"CIRCT :: Target/ExportSMTLIB/.*\.mlir"
|
||||
"CIRCT :: circt-bmc/.*\.mlir"
|
||||
# These tests were having issues on rosetta
|
||||
"CIRCT :: Dialect/.*/Reduction/.*\.mlir"
|
||||
"CIRCT :: Dialect/SMT/.*\.mlir"
|
||||
"CIRCT :: circt-as-dis/.*\.mlir"
|
||||
"CIRCT :: circt-reduce/.*\.mlir"
|
||||
"CIRCT :: circt-test/basic.mlir"
|
||||
];
|
||||
in
|
||||
if lit-filters != [ ] then lib.strings.concatStringsSep "|" lit-filters else null;
|
||||
|
Loading…
Reference in New Issue
Block a user