commit b37186110d45e15f451443abbe734dc5375f0793 Author: LordBaryhobal Date: Mon Mar 31 11:36:57 2025 +0200 initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d91816e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM emscripten/emsdk + +RUN wget -O /tmp/wasi-stub.tar.gz https://github.com/astrale-sharp/wasm-minimal-protocol/releases/download/wasi-stub-0.2.0/wasi-stub-x86_64-unknown-linux-musl.tar.gz &&\ + mkdir /tmp/wasi-stub &&\ + tar -xf /tmp/wasi-stub.tar.gz -C /tmp/wasi-stub --strip-components=1 &&\ + mv /tmp/wasi-stub/wasi-stub /bin/wasi-stub &&\ + chmod +x /bin/wasi-stub &&\ + rm -r /tmp/wasi-stub* + +COPY compile.sh /bin/compile +RUN chmod +x /bin/compile \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..a306224 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# typst-plugin-compiler + +This repository provides a simple docker image to easily compile Typst WASM plugins using EMCC and wasi-stub + +The wasi-stub executable is taken from the [wasm-minimal-protocol repo](https://github.com/astrale-sharp/wasm-minimal-protocol). + +## Compiling a plugin + +1. Write your C plugin. You can start from the example provided in the [wasm-minimal-protocol repo](https://github.com/astrale-sharp/wasm-minimal-protocol). + +2. Run the docker image: + ```bash + docker run --rm -v $(pwd):/src git.kb28.ch/hel/typst-plugin-compiler:latest compile plugin.c + ``` + +3. Copy the output file (for the above example, `plugin.wasm`) to your Typst project \ No newline at end of file diff --git a/compile.sh b/compile.sh new file mode 100644 index 0000000..392d7dd --- /dev/null +++ b/compile.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +scriptSrc=$1 +scriptWasm=${scriptSrc%.c}.wasm + +echo "Compiling $scriptSrc -> $scriptWasm" +emcc --no-entry -O3 -s ERROR_ON_UNDEFINED_SYMBOLS=0 $scriptSrc -o $scriptWasm + +echo "Stubbing $scriptWasm" +wasi-stub $scriptWasm -o $scriptWasm \ No newline at end of file