Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
disable wasm_opt on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
wangshishuo committed Jul 24, 2020
1 parent f6cf657 commit 19962bc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssvmup"
version = "0.1.13"
version = "0.1.14"
authors = ["wangshishuo"]
repository = "https://github.com/second-state/ssvmup.git"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions installer/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

set -u

UPDATE_ROOT="https://github.com/second-state/ssvmup/releases/download/v0.1.13"
UPDATE_ROOT="https://github.com/second-state/ssvmup/releases/download/v0.1.14"

main() {
downloader --check
Expand Down Expand Up @@ -43,7 +43,7 @@ main() {
which rustup > /dev/null 2>&1
need_ok "failed to find Rust installation, is rustup installed?"
local _rustup=`which rustup`
local _tardir="ssvmup-v0.1.13-${_arch}"
local _tardir="ssvmup-v0.1.14-${_arch}"
local _url="$UPDATE_ROOT/${_tardir}.tar.gz"
local _dir="$(mktemp -d 2>/dev/null || ensure mktemp -d -t ssvmup)"
local _file="$_dir/input.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ssvmup",
"version": "0.1.13",
"version": "0.1.14",
"description": "SSVM ready tool",
"main": "binary.js",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions src/wasm_opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ pub fn find_wasm_opt(cache: &Cache, install_permitted: bool) -> Result<WasmOpt,
"x86_64-apple-darwin"
} else if target::WINDOWS && target::x86_64 {
"x86_64-windows"
} else if target::LINUX && target::aarch64 {
"aarch64-linux"
} else {
return Ok(WasmOpt::PlatformNotSupported);
};
Expand Down

0 comments on commit 19962bc

Please sign in to comment.