Giter VIP home page Giter VIP logo

Comments (2)

leighmcculloch avatar leighmcculloch commented on June 8, 2024

I guess it is not so straightforward.

A simple Go app built to wasip1 requires the following imports:

wasi_snapshot_preview1.sched_yield
wasi_snapshot_preview1.proc_exit
wasi_snapshot_preview1.args_get
wasi_snapshot_preview1.args_sizes_get
wasi_snapshot_preview1.clock_time_get
wasi_snapshot_preview1.environ_get
wasi_snapshot_preview1.environ_sizes_get
wasi_snapshot_preview1.fd_write
wasi_snapshot_preview1.random_get
wasi_snapshot_preview1.poll_oneoff

Also, when I stub them with the following changes:

diff --git a/runtimes/web/src/runtime.ts b/runtimes/web/src/runtime.ts
index bf83d76..01c81d5 100644
--- a/runtimes/web/src/runtime.ts
+++ b/runtimes/web/src/runtime.ts
@@ -159,8 +159,21 @@ export class Runtime {
             tracef: this.tracef.bind(this),
         };
 
+        const wasi_snapshot_preview1 = {
+            sched_yield: () => {},
+            proc_exit: () => {},
+            args_get: () => {},
+            args_sizes_get: () => {},
+            clock_time_get: () => {},
+            environ_get: () => {},
+            environ_sizes_get: () => {},
+            fd_write: () => {},
+            random_get: () => {},
+            poll_oneoff: () => {},
+        };
+
         await this.bluescreenOnError(async () => {
-            const module = await WebAssembly.instantiate(wasmBuffer, { env });
+            const module = await WebAssembly.instantiate(wasmBuffer, { env, wasi_snapshot_preview1 });
             this.wasm = module.instance;
 
             // Call the WASI _start/_initialize function (different from WASM-4's start callback!)

It still doesn't run, and produces this error in the browser:

Unhandled Promise Rejection: RangeError: Maximum call stack size exceeded.

from wasm4.

leighmcculloch avatar leighmcculloch commented on June 8, 2024

Also, it seems Go 1.21 wasip1 won't allow exporting functions to WASM:

from wasm4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.