dtolnay / watt

Runtime for executing procedural macros as WebAssembly
Apache License 2.0
1.29k stars 28 forks source link

Improve JIT build documentation and support #15

Closed alexcrichton closed 5 years ago

alexcrichton commented 5 years ago

Add a section to the README about how to use WATT_JIT as well as an example of how to build wasmtime and use it. This also in the process switches from static linkage to dynamic linkage discovered at runtime to avoid having to deal with things like LD_LIBRARY_PATH with proc macros (dylibs) depending on dylibs (wasmtime).

dtolnay commented 5 years ago

I moved this documentation to https://github.com/dtolnay/watt/tree/master/jit.

alexcrichton commented 5 years ago

👍

Thanks!