mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-08-13 20:44:32 -04:00
9cf1f9e1d7
* start add wasm integration * some test * some improvement * try more language * expend try with python * update * half working python * improve and extend test * get py2wasm work but not so well * convert to use in cpp * start prepare multimodule * improve a little by using cpp (but still not great) * Update wasm.cpp * try ocaml * add a working example of python with a not complete function * remove type to be even more curse * start add a proper mod loader * allow mod to communicate between * example of hook --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
6 lines
241 B
Bash
Executable File
6 lines
241 B
Bash
Executable File
py2many . --cpp=1 --outdir out
|
|
echo "#include \"../export.cpp\"" >> out/main.cpp
|
|
emcc out/main.cpp -o out/testpython.wasm -O3 -s LINKABLE=1 -s EXPORT_ALL=1 -s PURE_WASI=1
|
|
rm ../../build/test.wasm
|
|
cp out/testpython.wasm ../../build/test.wasm
|