OLD | NEW |
---|---|
(Empty) | |
1 This is a prototype for plumbing Mojo into the NaCl sandbox. It is | |
2 currently insecure, does not provide a stable ABI, and does not | |
Mark Seaborn
2014/09/09 19:13:11
Can you say what you mean by insecure, so people k
Nick Bray (chromium)
2014/09/09 23:12:32
Done.
| |
3 support Mojo functions that return pointers. | |
Mark Seaborn
2014/09/09 19:13:11
...for example, MojoMapBuffer()? (If I understand
Nick Bray (chromium)
2014/09/09 23:12:32
Done.
| |
4 | |
5 gen/interface.py contains a programmatic description of the stable | |
Mark Seaborn
2014/09/09 19:13:11
It's now generator/interface.py.
Nick Bray (chromium)
2014/09/09 23:12:32
Done.
| |
6 Mojo interface. This will need to be updated as the interface | |
7 changes. Run gen/generate_monacl_bindings.py to generate the bindings | |
Mark Seaborn
2014/09/09 19:13:11
"generator"
Nick Bray (chromium)
2014/09/09 23:12:32
Done.
| |
8 that plumb this interface into the NaCl sandbox. | |
9 | |
10 To test: Build "monacl_shell" and "monacl_test". Run monacl_shell | |
11 with the IRT as the first argument and the monacl_test as the second | |
12 argument. For example, to run a Debug 32-bit Intel build: | |
13 | |
14 cd out/Debug | |
15 ./monacl_shell irt_core_newlib_x32.nexe monacl_test_newlib_x32.nexe | |
OLD | NEW |