Use --export-table from the latest LLD (#316)

* Remove unused build.sh

* Don't use wasm-export-table anymore.

* Rebuild binaries.

* Fix build script.
This commit is contained in:
Sergey Pepyakin
2018-07-15 14:09:29 +02:00
committed by Gav Wood
parent 8a0eaf9146
commit 8cafabc4bd
3 changed files with 0 additions and 13 deletions
-13
View File
@@ -1,13 +0,0 @@
#!/usr/bin/env bash
set -e
rm -rf ./target
for i in */
do
i=${i%/}
cd $i
RUSTFLAGS="-C link-arg=--import-memory" cargo +nightly build --target=wasm32-unknown-unknown --release --no-default-features
wasm-gc target/wasm32-unknown-unknown/release/$i.wasm ../../tests/res/$i.wasm
cd ..
done