Provide NixOS module option to enable the paperless exporter. (#242084)
[NixPkgs.git] / pkgs / by-name / ci / circt / package.nix
blobfd87023d2bbdae2e6a6c7f43e47bb9ea70024f7e
2   stdenv,
3   lib,
4   cmake,
5   coreutils,
6   python3,
7   git,
8   fetchFromGitHub,
9   ninja,
10   lit,
11   z3,
12   gitUpdater,
13   callPackage,
16 let
17   pythonEnv = python3.withPackages (ps: [ ps.psutil ]);
18   circt-llvm = callPackage ./circt-llvm.nix { };
20 stdenv.mkDerivation rec {
21   pname = "circt";
22   version = "1.99.2";
23   src = fetchFromGitHub {
24     owner = "llvm";
25     repo = "circt";
26     rev = "firtool-${version}";
27     hash = "sha256-zX+mzbfucrXdFN4+j+nAptn3HVLPKVUd55cQRHrpIJg=";
28     fetchSubmodules = true;
29   };
31   requiredSystemFeatures = [ "big-parallel" ];
33   nativeBuildInputs = [
34     cmake
35     ninja
36     git
37     pythonEnv
38     z3
39   ];
40   buildInputs = [ circt-llvm ];
42   cmakeFlags = [
43     "-DBUILD_SHARED_LIBS=ON"
44     "-DMLIR_DIR=${circt-llvm.dev}/lib/cmake/mlir"
46     # LLVM_EXTERNAL_LIT is executed by python3, the wrapped bash script will not work
47     "-DLLVM_EXTERNAL_LIT=${lit}/bin/.lit-wrapped"
48     "-DCIRCT_LLHD_SIM_ENABLED=OFF"
49   ];
51   # cannot use lib.optionalString as it creates an empty string, disabling all tests
52   LIT_FILTER_OUT =
53     let
54       lit-filters =
55         # There are some tests depending on `clang-tools` to work. They are activated only when detected
56         # `clang-tidy` in PATH, However, we cannot simply put `clang-tools` in checkInputs to make these
57         # tests work. Because
58         #
59         # 1. The absolute paths of binaries used in tests are resolved in configure phase.
60         # 2. When stdenv = clangStdenv, the `clang-tidy` binary appears in PATH via `clang-unwrapped`,
61         #    which is always placed before `${clang-tools}/bin` in PATH. `clang-tidy` provided in
62         #    `clang-unwrapped` cause tests failing because it is not wrapped to resolve header search paths.
63         #    https://github.com/NixOS/nixpkgs/issues/214945 discusses this issue.
64         #
65         # As a temporary fix, we disabled these tests when using clang stdenv
66         lib.optionals stdenv.cc.isClang [ "CIRCT :: Target/ExportSystemC/.*\\.mlir" ]
67         # Disable some tests on x86_64-darwin
68         ++ lib.optionals (stdenv.hostPlatform.system == "x86_64-darwin") [
69           # These test seem to pass on hydra (rosetta) but not on x86_64-darwin machines
70           "CIRCT :: Target/ExportSMTLIB/.*\\.mlir"
71           "CIRCT :: circt-bmc/.*\\.mlir"
72           # These tests were having issues on rosetta
73           "CIRCT :: Dialect/.*/Reduction/.*\\.mlir"
74           "CIRCT :: Dialect/SMT/.*\\.mlir"
75           "CIRCT :: circt-as-dis/.*\\.mlir"
76           "CIRCT :: circt-reduce/.*\\.mlir"
77           "CIRCT :: circt-test/basic.mlir"
78         ]
79         ++ [
80           # Temporarily disable for bump: https://github.com/llvm/circt/issues/8000
81           "CIRCT :: Dialect/FIRRTL/SFCTests/ExtractSeqMems/Compose.fir"
82           "CIRCT :: Dialect/FIRRTL/SFCTests/ExtractSeqMems/Simple2.fir"
83           "CIRCT :: Dialect/FIRRTL/extract-instances.mlir"
84         ];
85     in
86     if lit-filters != [ ] then lib.strings.concatStringsSep "|" lit-filters else null;
88   postPatch = ''
89     patchShebangs tools/circt-test
90   '';
92   preConfigure = ''
93     find ./test -name '*.mlir' -exec sed -i 's|/usr/bin/env|${coreutils}/bin/env|g' {} \;
94     # circt uses git to check its version, but when cloned on nix it can't access git.
95     # So this hard codes the version.
96     substituteInPlace cmake/modules/GenVersionFile.cmake \
97       --replace-fail "unknown git version" "${src.rev}"
98     # Increase timeout on tests because some were failing on hydra.
99     # Using `replace-warn` so it doesn't break when upstream changes the timeout.
100     substituteInPlace integration_test/CMakeLists.txt \
101       --replace-warn 'set(CIRCT_INTEGRATION_TIMEOUT 60)' 'set(CIRCT_INTEGRATION_TIMEOUT 300)'
102   '';
104   doCheck = true;
105   checkTarget = "check-circt check-circt-integration";
107   preCheck = lib.optionalString stdenv.hostPlatform.isDarwin ''
108     echo moving libarc-jit-env.dylib to '$lib' before check because archilator links to the output path
109     mkdir -pv $lib/lib
110     cp -v ./lib/libarc-jit-env.dylib $lib/lib
111   '';
113   outputs = [
114     "out"
115     "lib"
116     "dev"
117   ];
119   # Copy circt-llvm's postFixup stage so that it can make all our dylib references
120   # absolute as well.
121   #
122   # We don't need `postPatch` because circt seems to be automatically inheriting
123   # the config somehow, presumably via. `-DMLIR_DIR`.
124   postFixup = circt-llvm.postFixup;
126   postInstall = ''
127     moveToOutput lib "$lib"
128   '';
130   passthru = {
131     updateScript = gitUpdater {
132       rev-prefix = "firtool-";
133     };
134     llvm = circt-llvm;
135   };
137   meta = {
138     description = "Circuit IR compilers and tools";
139     homepage = "https://circt.org/";
140     license = lib.licenses.asl20;
141     maintainers = with lib.maintainers; [
142       sharzy
143       pineapplehunter
144       sequencer
145     ];
146     platforms = lib.platforms.all;
147   };