Skip to content

Commit

Permalink
correct review notes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Nov 26, 2024
1 parent a61da0b commit 00540ee
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,18 @@
enableDebug = true;
runTests = true;
});
crypto3-sanitize = (pkgs.callPackage ./crypto3.nix {
crypto3-clang-sanitize = (pkgs.callPackage ./crypto3.nix {
stdenv = pkgs.llvmPackages_19.stdenv;
runTests = true;
enableDebug = false;
sanitize = true;
});
crypto3-clang-sanitize = (pkgs.callPackage ./crypto3.nix {
crypto3-clang-sanitize-bench = (pkgs.callPackage ./crypto3.nix {
stdenv = pkgs.llvmPackages_19.stdenv;
runTests = true;
enableDebug = false;
sanitize = true;
bench = true;
});
crypto3-clang-debug = (pkgs.callPackage ./crypto3.nix {
stdenv = pkgs.llvmPackages_19.stdenv;
Expand Down Expand Up @@ -117,6 +119,13 @@
enableDebug = false;
sanitize = true;
});
crypto3-clang-sanitize-bench = (pkgs.callPackage ./crypto3.nix {
stdenv = pkgs.llvmPackages_19.stdenv;
runTests = true;
enableDebug = false;
sanitize = true;
bench = true;
});

parallel-crypto3-gcc = (pkgs.callPackage ./parallel-crypto3.nix {
runTests = true;
Expand All @@ -142,7 +151,7 @@
runTests = true;
enableDebug = false;
});
proof-producer-sanitize = (pkgs.callPackage ./proof-producer.nix {
proof-producer-clang-sanitize = (pkgs.callPackage ./proof-producer.nix {
stdenv = pkgs.llvmPackages_19.stdenv;
runTests = true;
enableDebug = false;
Expand All @@ -155,7 +164,7 @@
};
all-clang-sanitize = pkgs.symlinkJoin {
name = "all";
paths = [ crypto3-clang-sanitize parallel-crypto3-clang-sanitize proof-producer-sanitize ];
paths = [ crypto3-clang-sanitize parallel-crypto3-clang-sanitize proof-producer-clang-sanitize ];
};
all-gcc = pkgs.symlinkJoin {
name = "all";
Expand Down

0 comments on commit 00540ee

Please sign in to comment.