Skip to content

Commit

Permalink
Merge pull request #3693 from Avimitin/scala-cli_filecheck
Browse files Browse the repository at this point in the history
symlink all llvm and circt stuff together
  • Loading branch information
sequencer authored Dec 19, 2023
2 parents ea1417f + 38bb1a6 commit 4908724
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
devShell = pkgs.mkShell {
buildInputs = deps;
env = {
CIRCT_INSTALL_PATH = pkgs.circt;
CIRCT_INSTALL_PATH = pkgs.circt-all;
};
};
}
Expand Down
11 changes: 11 additions & 0 deletions overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,15 @@ final: prev:
substituteInPlace cmake/modules/GenVersionFile.cmake --replace "unknown git version" "nightly"
'';
});
circt-all = final.symlinkJoin {
name = "circt-all";
paths = with final; [
circt
circt.dev
circt.lib
circt.llvm
circt.llvm.dev
circt.llvm.lib
];
};
}

0 comments on commit 4908724

Please sign in to comment.