From 2a9508c9afac906bed8c0269d63dc6b0659f4bf9 Mon Sep 17 00:00:00 2001 From: meows Date: Mon, 7 Nov 2022 13:15:09 -0800 Subject: [PATCH] Makefile,build: remove SSVM interpreter; project no longer exists Original https://github.com/second-state/SSVM redirects to https://github.com/WasmEdge/WasmEdge. Date: 2022-11-07 13:15:09-08:00 Signed-off-by: meows --- Makefile | 6 +----- build/ssvm.sh | 13 ------------- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100755 build/ssvm.sh diff --git a/Makefile b/Makefile index ceda65e98d..1b78185291 100644 --- a/Makefile +++ b/Makefile @@ -48,9 +48,6 @@ test-coregeth: \ hera: ./build/hera.sh -ssvm: - ./build/ssvm.sh - evmone: ./build/evmone.sh @@ -58,9 +55,8 @@ aleth-interpreter: ./build/aleth-interpreter.sh # Test EVMC support against various external interpreters. -test-evmc: hera ssvm evmone aleth-interpreter +test-evmc: hera evmone aleth-interpreter go test -count 1 ./tests -run TestState -evmc.ewasm=$(ROOT_DIR)/build/_workspace/hera/build/src/libhera.so - go test -count 1 ./tests -run TestState -evmc.ewasm=$(ROOT_DIR)/build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so go test -count 1 ./tests -run TestState -evmc.evm=$(ROOT_DIR)/build/_workspace/evmone/lib/libevmone.so go test -count 1 ./tests -run TestState -evmc.evm=$(ROOT_DIR)/build/_workspace/aleth/lib/libaleth-interpreter.so diff --git a/build/ssvm.sh b/build/ssvm.sh deleted file mode 100755 index c6d33c70f1..0000000000 --- a/build/ssvm.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -set -e - -if [[ "$OSTYPE" != "linux"* ]]; then - echo "This script is only currently configured to work on Linux. Please see \"https://github.com/second-state/ssvm-evmc#notice\" documentation for instructions to build in other environments." - exit 1 -fi - -mkdir -p build/_workspace/SSVM/build/tools/ssvm-evmc/ -[[ -f build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so ]] && exit 0 -wget -O build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so \ - https://github.com/second-state/ssvm-evmc/releases/download/evmc7-0.1.1/libssvm-evmc.so