wasmtime-go icon indicating copy to clipboard operation
wasmtime-go copied to clipboard

Go WebAssembly runtime powered by Wasmtime

Results 31 wasmtime-go issues
Sort by recently updated
recently updated
newest added

``` Step 10/11 : RUN GOPROXY=$GOPROXY go test ./... ---> Running in 11eab791155a go: downloading github.com/bytecodealliance/wasmtime-go v0.17.0 # github.com/bytecodealliance/wasmtime-go /usr/lib/gcc/x86_64-alpine-linux-musl/9.2.0/../../../../x86_64-alpine-linux-musl/bin/ld: /go/pkg/mod/github.com/bytecodealliance/[email protected]/build/linux-x86_64/libwasmtime.a(std-3859b7e52a41a8fd.std.1o062trz-cgu.0.rcgu.o): in function `std::sys::unix::net::on_resolver_failure': /rustc/8d69840ab92ea7f4d323420088dd8c9775f180cd//src/libstd/sys/unix/net.rs:377: undefined reference to `__res_init' collect2:...

Multiple tests can't pass under wasmtime v0.35.3

Hi there. I'm sure others have run into this, too: dependabot fails to update wasmtime-go, and projects depending on it. We're seeing this with basically every release: OPA updating wasmtime-go...

Is this planned? Is this something that would be helpful for me to add and PR?

The current tests are written with the native package `testing` and `panic`, but the combination of these 2 package makes the test will be interrupted by single error. In which...

Hello, This is not an issue with Wasmtime, I am just hoping to get confirmation of something I'm seeing on my own machine. It seems there has been a regression...

With this main.go ([files here](https://github.com/srenatus/wasmtime-sigill-issue)): ``` package main import ( "log" "time" "github.com/bytecodealliance/wasmtime-go" ) func main() { bs, err := wasmtime.Wat2Wasm(` (func (export "loop") (loop br 0)) `) check(err) for...

### 1. background In my case, i want to limit the max memory that the *.wasm file can use, if it reached the limit, it can crash by OOM. it's...

I've been going through the docs on profiling wasm executions using wasmtime, and [they state that there's perf and vtune](https://docs.wasmtime.dev/examples-profiling.html). On macos, I don't think running perf is entirely easy...