Skip to content

Commit

Permalink
kevm-pyk/dist: parallelize plugin build
Browse files Browse the repository at this point in the history
  • Loading branch information
ehildenb committed Sep 29, 2023
1 parent b4d78fa commit 67b752e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _do_build_plugin(*, verbose: bool) -> None:

with _plugin_build_env() as build_dir:
try:
run_process(['make', 'libcryptopp', 'libff', 'libsecp256k1'], cwd=build_dir, pipe_stdout=not verbose)
run_process(['make', 'libcryptopp', 'libff', 'libsecp256k1', '-j3'], cwd=build_dir, pipe_stdout=not verbose)
except CalledProcessError:
clean_plugin()
raise
Expand Down

0 comments on commit 67b752e

Please sign in to comment.