Index: README-wasm.md |
diff --git a/README-wasm.md b/README-wasm.md |
new file mode 100644 |
index 0000000000000000000000000000000000000000..94e8def272edd5a04c8e899e3cf68eb01a034444 |
--- /dev/null |
+++ b/README-wasm.md |
@@ -0,0 +1,19 @@ |
+# Wasm Prototype Experiment Notes |
+ |
+Here's the command I use to test: |
+ |
+``` |
+LD_LIBRARY_PATH=~/nacl/v8/out/native/lib.target make -j48 -f Makefile.standalone WASM=1 && LD_LIBRARY_PATH=~/nacl/v8/out/native/lib.target ./pnacl-sz -O2 -filetype=asm -target=arm32 ./torture-s2wasm-sexpr-wasm/20000112-1.c.s.wast.wasm |
Jim Stichnoth
2016/04/04 21:26:51
Do you really need to set LD_LIBRARY_PATH just to
Eric Holk
2016/04/04 22:23:22
For some reason we do need the LD_LIBRARY_PATH eve
|
+``` |
+You'll probably need to adjust your `LD_LIBRARY_PATH` to point to where your v8 |
+libraries are. |
+ |
+You'll need to build v8 as a shared library. Build it like this: |
+ |
+``` |
+make -j48 native component=shared_library |
+``` |
+ |
+`wasm-run-torture-tests.py` can be used to run all the tests, or some |
Jim Stichnoth
2016/04/04 21:26:51
reflow to 80-col?
Eric Holk
2016/04/04 22:23:22
Done.
|
+subset. Running a subset will enable verbose output. You can download the |
+torture tests from the [WebAssembly waterfall](https://wasm-stat.us/console). |