mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-08 20:27:27 +01:00
d4e7c0aff2
This is a different toolchain following how wasi-sdk defines the platform triple and how builds are configured -- everything should be built with the flags defined in the toolchain file. We build from web-wasi:latest, and that is built first.
5 lines
187 B
Bash
Executable File
5 lines
187 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Mount the PWD and the /work mount dir to enable access in try_run commands
|
|
exec ${WASMTIME_HOME}/bin/wasmtime -S threads=y run --dir=. --dir=$PWD --dir=/work/ "$@"
|