* In WASM, use a custom, simple malloc implementation that lets us expicitly reset the heap with a new start location. * When a WASM call traps or errors, propagate that as a parse failure. * Reset the WASM heap after every parse. Co-authored-by: Conrad <conrad@zed.dev>
34 lines
964 B
Bash
Executable file
34 lines
964 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Remove quotes and commas
|
|
EXPORTED_FUNCTIONS=$( \
|
|
cat lib/src/wasm/stdlib-symbols.txt | \
|
|
tr -d ',"' \
|
|
)
|
|
|
|
EXPORT_FLAGS=""
|
|
for function in ${EXPORTED_FUNCTIONS}; do
|
|
EXPORT_FLAGS+=" -Wl,--export=${function}"
|
|
done
|
|
|
|
target/wasi-sdk-21.0/bin/clang-17 \
|
|
-o stdlib.wasm \
|
|
-Os \
|
|
-fPIC \
|
|
-Wl,--no-entry \
|
|
-Wl,--stack-first \
|
|
-Wl,-z -Wl,stack-size=65536 \
|
|
-Wl,--import-undefined \
|
|
-Wl,--import-memory \
|
|
-Wl,--import-table \
|
|
-Wl,--strip-debug \
|
|
-Wl,--export=reset_heap \
|
|
-Wl,--export=__wasm_call_ctors \
|
|
-Wl,--export=__stack_pointer \
|
|
${EXPORT_FLAGS} \
|
|
lib/src/wasm/stdlib.c
|
|
|
|
xxd -C -i stdlib.wasm > lib/src/wasm/wasm-stdlib.h
|
|
mv stdlib.wasm target/
|