mirror of
https://github.com/wasmerio/wasmer.git
synced 2025-09-04 23:38:56 +00:00
12 lines
236 B
Bash
Executable File
12 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export WASIXCC_WASM_EXCEPTIONS=yes
|
|
export WASIXCC_PIC=yes
|
|
|
|
wasixcc main.c -o main.wasm -Wl,-pie
|
|
wasixcc side1.c -o libside1.so -Wl,-shared
|
|
wasixcc side2.c -o libside2.so -Wl,-shared
|
|
|
|
$WASMER -q run main.wasm --dir=. |