You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Virgil compiles to WASM and has three different runtime implementations:
(1) rt/wave, the (W)eb(A)ssembly (V)irgil (E)nvironment), a minimal set of imports just to get Virgil running, which was only implemented in Wizard and a bit-rotted version in V8 using the C embedding API.
(2) rt/wasi_snapshot_preview1, an implementation of System against the wasi_snapshot_preview1 API, but it is not complete.
(3) rt/node, an implementation of System against the node.js APIs.
I could use some help with (2), as there are a few things not working. Also, there is no equivalent of chmod, which is a minor thing, but needed to bootstrap the compiler.
Also, I haven't fully tested (3) or made it robust. Could use some help here.
The text was updated successfully, but these errors were encountered:
System.fileLoad(), for one, which needs stat to get a file size. Generally the tests in test/wasi/ and test/system were what I was working on before I got sidetracked.
Virgil compiles to WASM and has three different runtime implementations:
(1)
rt/wave
, the (W)eb(A)ssembly (V)irgil (E)nvironment), a minimal set of imports just to get Virgil running, which was only implemented in Wizard and a bit-rotted version in V8 using the C embedding API.(2)
rt/wasi_snapshot_preview1
, an implementation ofSystem
against thewasi_snapshot_preview1
API, but it is not complete.(3)
rt/node
, an implementation ofSystem
against the node.js APIs.I could use some help with (2), as there are a few things not working. Also, there is no equivalent of
chmod
, which is a minor thing, but needed to bootstrap the compiler.Also, I haven't fully tested (3) or made it robust. Could use some help here.
The text was updated successfully, but these errors were encountered: