We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libstdc++-12-dev
I tried building the semantics on my Ubuntu 24.04.1 laptop and during the blockchain plugin step
poetry -C kevm-pyk run kdist --verbose build evm-semantics.plugin
I was consistently getting errors of this sort:
INFO 2025-01-13 18:37:39,970 pyk.utils - [PID=1491824][stde] ./config_cxx.h:37:10: fatal error: 'string' file not found INFO 2025-01-13 18:37:39,970 pyk.utils - [PID=1491824][stde] 37 | #include <string> INFO 2025-01-13 18:37:39,970 pyk.utils - [PID=1491824][stde] | ^~~~~~~~
After much tinkering, I did
sudo apt-get install libstdc++-14-dev
and was able to build the plugin.
However, in the install-build-deps script we have the following dependency
install-build-deps
evm-semantics/install-build-deps
Line 42 in 496cb34
libstdc++-14-dev
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried building the semantics on my Ubuntu 24.04.1 laptop and during the blockchain plugin step
I was consistently getting errors of this sort:
After much tinkering, I did
and was able to build the plugin.
However, in the
install-build-deps
script we have the following dependencyevm-semantics/install-build-deps
Line 42 in 496cb34
Should it be updated to
libstdc++-14-dev
? I ran theinstall-build-deps
during the debugging process and it didn't solve the issue.The text was updated successfully, but these errors were encountered: