-
-
Save surma/c1b69df0aa168eee6ef08812123e0bbd to your computer and use it in GitHub Desktop.
Example for a Emscripten project boilerplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
export OPTIMIZE="-Os" | |
export LDFLAGS="${OPTIMIZE}" | |
export CFLAGS="${OPTIMIZE}" | |
export CPPFLAGS="${OPTIMIZE}" | |
echo "=============================================" | |
echo "Compiling wasm bindings" | |
echo "=============================================" | |
( | |
# Compile C/C++ code | |
emcc \ | |
${OPTIMIZE} \ | |
--bind \ | |
-s STRICT=1 \ | |
-s ALLOW_MEMORY_GROWTH=1 \ | |
-s ASSERTIONS=0 \ | |
-s MALLOC=emmalloc \ | |
-s MODULARIZE=1 \ | |
-s EXPORT_ES6=1 \ | |
-o ./my-module.js \ | |
-I /opt/libvpx/src \ | |
my-module.cpp \ | |
/opt/libvpx/build/libvpx.a | |
# Create output folder | |
mkdir -p dist | |
# Move artifacts | |
mv my-module.{js,wasm} dist | |
) | |
echo "=============================================" | |
echo "Compiling wasm bindings done" | |
echo "=============================================" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM trzeci/emscripten | |
RUN apt-get update && \ | |
apt-get install -qqy doxygen git && \ | |
mkdir -p /opt/libvpx/build && \ | |
git clone https://github.com/webmproject/libvpx /opt/libvpx/src | |
RUN cd /opt/libvpx/build && \ | |
emconfigure ../src/configure --target=generic-gnu && \ | |
emmake make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
Open the console to see the output from the wasm module. | |
<script type="module"> | |
import wasmModule from "./my-module.js"; | |
const instance = wasmModule({ | |
onRuntimeInitialized() { | |
instance.sayHello(); | |
} | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "vpxenc.h" | |
#include <emscripten/bind.h> | |
using namespace emscripten; | |
int say_hello() { | |
printf("Hello from your wasm module with libvpx %d\n", VPX_CODEC_ABI_VERSION); | |
return 0; | |
} | |
EMSCRIPTEN_BINDINGS(my_module) { | |
function("sayHello", &say_hello); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "my-worldchanging-project", | |
"scripts": { | |
"install": "napa", | |
"build:dockerimage": "docker build -t mydockerimage .", | |
"build:emscripten": "docker run --rm -v $(pwd):/src mydockerimage ./build.sh", | |
"build:app": "cp index.html dist/index.html", | |
"build": "npm run build:dockerimage && npm run build:emscripten && npm run build:app", | |
"serve": "http-server -c0 dist" | |
}, | |
"devDependencies": { | |
"http-server": "*" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment