Skip to content

Commit

Permalink
Disable TESTING option inside barretenberg bootstrap (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
phated authored Jan 12, 2023
1 parent fce28cd commit fe72c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions barretenberg/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fi

# Build native.
mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=RelWithAssert -DTOOLCHAIN=$TOOLCHAIN ..
cmake -DCMAKE_BUILD_TYPE=RelWithAssert -DTOOLCHAIN=$TOOLCHAIN -DTESTING=OFF ..
cmake --build . --parallel
cd ..

Expand All @@ -56,6 +56,6 @@ cd ..

# Build WASM.
mkdir -p build-wasm && cd build-wasm
cmake -DTOOLCHAIN=wasm-linux-clang ..
cmake -DTOOLCHAIN=wasm-linux-clang -DTESTING=OFF ..
cmake --build . --parallel --target barretenberg.wasm
cd ..

0 comments on commit fe72c2a

Please sign in to comment.