diff options
author | Sam Clegg <sbc@chromium.org> | 2020-05-12 21:28:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 18:28:43 -0700 |
commit | a5a9b341b7fb7aa66427d4701871d2b3c73bcc87 (patch) | |
tree | fb630fd7eda42cdb8038f9d07ef2ae93cc062165 /.gitmodules | |
parent | 08aa226fa21d15aeac865c0a38b77fb852728a88 (diff) | |
download | wabt-a5a9b341b7fb7aa66427d4701871d2b3c73bcc87.tar.gz wabt-a5a9b341b7fb7aa66427d4701871d2b3c73bcc87.tar.bz2 wabt-a5a9b341b7fb7aa66427d4701871d2b3c73bcc87.zip |
Add initial MVP of WASI API support to wasm-interp (#1411)
This is proof of concept that only implements the `proc_exit` and
`fd_write` APIs.
Extending this to the full WASI API will to follow assuming this
approach seems reasonable.
Fixes #1409
Diffstat (limited to '.gitmodules')
-rw-r--r-- | .gitmodules | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index 7352235c..a47f2eca 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,3 +10,6 @@ [submodule "third_party/wasm-c-api"] path = third_party/wasm-c-api url = https://github.com/WebAssembly/wasm-c-api +[submodule "third_party/uvwasi"] + path = third_party/uvwasi + url = https://github.com/cjihrig/uvwasi |