WasmEdge-go
WasmEdge-go copied to clipboard
The GO language SDK and API for WasmEdge
Signed-off-by: hydai
`WasmEdge-go` not supports goroutine now. We should support goroutine in `WasmEdge-go` in the future.
For https://github.com/second-state/WasmEdge-go-examples/blob/master/go_BindgenFuncs/bindgen_funcs.go If I put the vm as a global variable, and call the `vm.ExecuteBindgen` in goroutine: ```go package main import ( "fmt" "os" "github.com/second-state/WasmEdge-go/wasmedge" ) var...
There was a comment that was preventing me from building one of my projects. This PR removes that comment.
### What i want just like wasmer, i declare some wasi functions in C++, and call them in C++ ``` extern "C" { EMSCRIPTEN_KEEPALIVE void *get_request_data(int field); EMSCRIPTEN_KEEPALIVE char* calculate_score_wasi(int...
Error is: `could not determine kind of name for C.WasmEdge_Driver_UniTool` Was attempting to build the Fibonacci example: https://github.com/second-state/WasmEdge-go-examples/tree/master Running on MacOS with an ARM chip. Any thoughts on how to...
Hello, While I am trying to use wasmedge sdk for windows 10, I got the error. Have you any suggestion for that? I have done the required steps for installation....
Right now, installing shared libraries is a manual task, and they are quite large (dozens of megabytes). I've been told that the shared libraries are only 1.7MB, which would be...
I'm not sure if there's a way, but I can't find a configuration to set stdout to something besides os.Stdout. This is helpful in tests, ideally a writer.
I've been trying to get WasmEdge to be able to invoke a WASM function compiled in AssemblyScript. I can get it to work by passing simple types (int32, int64) but...