diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 13:29:45 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 13:29:45 -0700 |
commit | 81e35a5fdf894232e4167a9d66c7b93ecf31ea41 (patch) | |
tree | 4207dbfdd8649951735da8f5741690b2d588a8d9 /src/wasm-js.cpp | |
parent | dcdf2e222f0b42c71ca41f7e37bc77decfef37f7 (diff) | |
download | binaryen-81e35a5fdf894232e4167a9d66c7b93ecf31ea41.tar.gz binaryen-81e35a5fdf894232e4167a9d66c7b93ecf31ea41.tar.bz2 binaryen-81e35a5fdf894232e4167a9d66c7b93ecf31ea41.zip |
progress on wasm.js communication
Diffstat (limited to 'src/wasm-js.cpp')
-rw-r--r-- | src/wasm-js.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-js.cpp b/src/wasm-js.cpp index e2ef47bbb..2bea09a16 100644 --- a/src/wasm-js.cpp +++ b/src/wasm-js.cpp @@ -3,6 +3,9 @@ // wasm intepreter for asm2wasm output, in a js environment. receives asm.js, // generates a runnable module suitable as a polyfill. // +// this polyfills an emscripten --separate-asm *.asm.js file, as a drop-in +// replacement. it writes the wasm module to Module.asm, and sets Module.buffer. +// #include <emscripten.h> |