Commit c8715cba authored by Sergey Pepyakin's avatar Sergey Pepyakin Committed by Gav Wood
Browse files

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

* Remove unused build.sh

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

* Rebuild binaries.

* Fix build script.
parent 7dbde5d6
#!/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
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment