You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is an intermittent solution that resolves this issue. We would likely prefer to tie this installation to a specific version instead of using the most up-to-date version every install.
diff --git a/scripts/setup-dependencies.sh b/scripts/setup-dependencies.sh
index 1e20e13..cd76c00 100755
--- a/scripts/setup-dependencies.sh+++ b/scripts/setup-dependencies.sh@@ -121,15 +121,8 @@ make install
cd ../..
# NOTE: updating evmone to v0.10.0 requires c++20
-EVMONE_VER=0.9.1-wget https://github.com/ethereum/evmone/archive/refs/tags/v${EVMONE_VER}.zip-rm -rf evmone-${EVMONE_VER}-unzip v${EVMONE_VER}.zip-rm v${EVMONE_VER}.zip-cd evmone-${EVMONE_VER}-rm -rf evmc-mv ../evmc-${EVMC_VER} ./evmc-mkdir ./evmc/.git+git clone --recursive https://github.com/ethereum/evmone+cd evmone+git reset --hard 18357149ee6d24bb4f5c780044cee1ddd452af8e
if [[ "$OSTYPE" == "darwin"* ]]; then
# Mac Silicon: clang 'ar' does not allow empty member list, fails w/ -DBUILD_SHARED_LIBS=OFF
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="${PREFIX}"
@@ -140,7 +133,7 @@ cmake --build build --parallel
cd build
make install
cd ../..
-rm -rf evmone-${EVMONE_VER}+rm -rf evmone
Affected Branch
trunk
Basic Diagnostics
I've pulled the latest changes on the affected branch and the issue is still present.
The issue is reproducible in docker
Description
In order to reproduce the issue, follow these steps:
$ ./scripts/setup-dependencies.sh
Note: install dependencies get hung on Hunter 0.24.5 installation step
behavior also replicated by @maurermi
Code of Conduct
The text was updated successfully, but these errors were encountered: