Skip to content

Commit

Permalink
add EVM_VERIFIER flag
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Jul 8, 2024
1 parent 8ba2071 commit 87cbfed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/nix_build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
# nix is taken from the cloud-init template, no need to install it.
- name: Setup build
run: |
nix develop .?submodules=1# -c cmake -G Ninja -B build -DCMAKE_CXX_STANDARD=17 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_ENABLE_TESTS=TRUE -DGENERATE_EVM_VERIFIER=TRUE -DZKLLVM_VERSION=0.1.18
nix develop .?submodules=1# -c cmake -G Ninja -B build -DCMAKE_CXX_STANDARD=17 -DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_ENABLE_TESTS=TRUE \
-DGENERATE_EVM_VERIFIER=TRUE \
-DZKLLVM_VERSION=0.1.18
- name: Build zkllvm
run: |
Expand Down
1 change: 1 addition & 0 deletions zkllvm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ in stdenv.mkDerivation {
(if enableDebug then "-DCMAKE_BUILD_TYPE=Debug" else "-DCMAKE_BUILD_TYPE=Release")
(if enableDebug then "-DCMAKE_CXX_FLAGS=-ggdb" else "")
"-DZKLLVM_VERSION=0.1.18"
"-DGENERATE_EVM_VERIFIER=TRUE"
];

ninjaFlags = "assigner clang transpiler";
Expand Down

0 comments on commit 87cbfed

Please sign in to comment.