Skip to content

Commit

Permalink
clang default
Browse files Browse the repository at this point in the history
  • Loading branch information
dougch committed Nov 4, 2024
1 parent 3ca567e commit 0607ffe
Show file tree
Hide file tree
Showing 2 changed files with 219 additions and 1 deletion.
217 changes: 217 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
stdenv = pkgs.clangStdenv;
packages.aws-lc = pkgs.stdenv.mkDerivation {
src = self;
name = "aws-lc";
inherit system;
nativeBuildInputs = [ pkgs.ninja pkgs.cmake pkgs.perl ];
nativeBuildInputs = [ pkgs.ninja pkgs.cmake pkgs.go pkgs.perl ];
cmakeFlags = [ "-GNinja" "-DCMAKE_BUILD_TYPE=relwithdebinfo" "-DFIPS=1" ];
checkPhase = ''
ninja run_minimal_tests
Expand Down

0 comments on commit 0607ffe

Please sign in to comment.