mirror of
https://github.com/robonen/canvas-3d.git
synced 2026-03-20 10:54:39 +00:00
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run --rm \
|
|
-v $(pwd)/src:/src \
|
|
-v $(pwd)/dist:/dist \
|
|
llvm \
|
|
clang --target=wasm32 -O3 -fno-builtin -flto -nostdlib -Wl,--no-entry -Wl,--export-all /src/matrix.c
|