wasm-utils/runner/build.sh

26 lines
707 B
Bash
Raw Normal View History

2017-04-12 13:58:22 +03:00
#!/bin/sh
# "Compile rust source and put it as a tested contract"
mkdir -p out
2017-04-12 16:03:06 +03:00
file=$1
if [ ${file: -3} == ".rs" ]
then
# Rust is compiled with rustc
rustc $file -o out/contract.js -O --target wasm32-unknown-emscripten
else
# c/c++ can be compiled directly by emcc
emcc $file -Os -s WASM=1 -s SIDE_MODULE=1 -o out/contract.wasm
2017-04-12 18:06:03 +03:00
fi
2017-04-27 21:28:06 +03:00
# Gas injector
2017-04-27 12:42:07 +03:00
cargo run --manifest-path=./../gas/Cargo.toml --release -- ./out/contract.wasm ./out/contract.wasm
2017-04-27 21:28:06 +03:00
# Allocator replacer
cargo run --manifest-path=./../ext/Cargo.toml --release -- ./out/contract.wasm ./out/contract.wasm
# Symbols optimizer
cargo run --manifest-path=./../opt/Cargo.toml --release -- ./out/contract.wasm ./out/contract.wasm