summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-10-31 22:36:30 -0700
committerAlon Zakai <alonzakai@gmail.com>2015-10-31 22:36:30 -0700
commitfb4151c56a72134f04152bed78f8fa73beb70f35 (patch)
treee843934f933b2f0a79475654ebe9f0d7c188f4c2
parent7b06b0157e4102393f36fd6a039a28fa2612b731 (diff)
downloadbinaryen-fb4151c56a72134f04152bed78f8fa73beb70f35.tar.gz
binaryen-fb4151c56a72134f04152bed78f8fa73beb70f35.tar.bz2
binaryen-fb4151c56a72134f04152bed78f8fa73beb70f35.zip
update readme
-rw-r--r--README.md5
1 files changed, 1 insertions, 4 deletions
diff --git a/README.md b/README.md
index 14d0601c2..d161c85b2 100644
--- a/README.md
+++ b/README.md
@@ -107,15 +107,12 @@ The `check.py` script supports some options:
Same as Emscripten: MIT license.
-For changes to `src/`, please make pulls into emscripten's `asm2wasm` branch (in `tools/optimizer`; this code is sync'ed with there, for convenience).
+(parts of `src/` are synced with `tools/optimizer` in the main emscripten repo, for convenience)
## 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.
- * Start running the output through WebAssembly interpreters. Right now it is likely wrong in many ways.
* 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.
- * Emscripten emits asm.js and JavaScript, that work together using web APIs to do things like print, render, etc. Need to figure out how to test that.
- * We could probably optimize the emitted WebAssembly.
* Memory section needs the right size.