Skip to content

Commit

Permalink
remove procps (#15)
Browse files Browse the repository at this point in the history
This should fix EVM on Ubuntu Noble
  • Loading branch information
Dwight Guth authored Aug 20, 2024
1 parent 2938419 commit 90f5598
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ RUN apt-get update \
debhelper \
libboost-test-dev \
libcrypto++-dev \
libprocps-dev \
libsecp256k1-dev \
libssl-dev \
libyaml-dev \
Expand Down
3 changes: 1 addition & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
let
nixLibs = pkgs:
with pkgs;
"-I${procps}/include -L${procps}/lib -I${openssl.dev}/include -L${openssl.out}/lib -I${secp256k1}/include -L${secp256k1}/lib";
"-I${openssl.dev}/include -L${openssl.out}/lib -I${secp256k1}/include -L${secp256k1}/lib";
buildInputs = pkgs:
with pkgs;
[
Expand All @@ -38,7 +38,6 @@
mpfr
openssl.dev
pkg-config
procps
python310-pyk
time
] ++ lib.optional (!stdenv.isDarwin) elfutils;
Expand Down
1 change: 0 additions & 1 deletion kevm-pyk/src/kevm_pyk/kompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ def lib_ccopts(plugin_dir: Path, debug_build: bool = False) -> list[str]:
else:
ccopts += config.NIX_LIBS.split(' ')
elif kernel == 'linux':
ccopts += ['-lprocps']
if config.NIX_LIBS:
ccopts += config.NIX_LIBS.split(' ')
else:
Expand Down

0 comments on commit 90f5598

Please sign in to comment.