Skip to content

Instantly share code, notes, and snippets.

View alexsmbaratti's full-sized avatar
:atom:
Working with Xcode

Alex Baratti alexsmbaratti

:atom:
Working with Xcode
View GitHub Profile
@anthumchris
anthumchris / build.sh
Last active July 3, 2021 02:56
Emscripten WebAssembly Module.ready Promise initialization similar to Module.onRuntimeInitialized
#!/bin/bash
emcc \
-O0 `# leave uncompressed for example` \
-s WASM=1 \
-s EXPORTED_FUNCTIONS="['_hello']" \
-s EXTRA_EXPORTED_RUNTIME_METHODS="['cwrap']" \
-o emscripten-module.js \
--post-js module-post.js \
hello.c