summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-01 11:51:30 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-01 11:51:30 -0800
commit34b3a09aae11f04deb08c14954707f99b0d49b83 (patch)
tree1d2c170aa772acf2af099014c18bfe0e944fabd0 /README.md
parent904aba781d4cdd7074d2f8d4faa833207a31e83e (diff)
downloadbinaryen-34b3a09aae11f04deb08c14954707f99b0d49b83.tar.gz
binaryen-34b3a09aae11f04deb08c14954707f99b0d49b83.tar.bz2
binaryen-34b3a09aae11f04deb08c14954707f99b0d49b83.zip
enable imports in emcc builds
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b51f38a5d..0c8284a35 100644
--- a/README.md
+++ b/README.md
@@ -112,7 +112,7 @@ Same as Emscripten: MIT license.
## TODO
* Waiting for switch to stablize on the spec repo; switches are Nop'ed.
- * Waiting for an interpreter with module importing support; imports are Nop'ed.
+ * Reference interpreter lacks module importing support; imports are Nop'ed in native builds, but enabled in emcc builds (so wasm.js works).
* WebAssembly lacks global variables, so `asm2wasm` maps them onto addresses in memory. This requires that you have some reserved space for those variables. You can do that with `emcc -s GLOBAL_BASE=1000`. We still need to write the code to copy the globals there.
* Memory section needs the right size.