wasmer icon indicating copy to clipboard operation
wasmer copied to clipboard

🚀 The leading Wasm Runtime supporting WASIX, WASI and Emscripten

Results 551 wasmer issues
Sort by recently updated
recently updated
newest added

Currently a common data structure is used both by the WASIX code to monitor status of instances, and to provide external notifications. This prevents running instances on a dedicated tokio...

Follow up from this PR: [https://github.com/wasmerio/wasmer/pull/5095](https://github.com/wasmerio/wasmer/pull/5095)

### Describe the bug When reading the contents of a large folder inside the guest machine with eg. fs::readdir, it seems as if wasmer if performing a metadata request for...

📦 lib-wasi
priority-medium
performance

### Describe the bug `Data/mydir` is a directory, and there is a file `Data/mydir/test.txt`. The c file is uploaded as [test-c.txt](https://github.com/wasmerio/wasmer/files/13612300/test-c.txt) The wasm file is uploaded as [test-wasm.txt](https://github.com/wasmerio/wasmer/files/13612301/test-wasm.txt) ### Steps...

bug
🕵️ needs investigation
📦 lib-cli
📦 lib-vfs
priority-medium

### Describe the bug The test.c file is uploaded [test-c.txt](https://github.com/wasmerio/wasmer/files/13559803/test-c.txt) And the test.wasm file is uploaded [test-wasm.txt](https://github.com/wasmerio/wasmer/files/13559807/test-wasm.txt) ### Steps to reproduce We create a normal file Data/hello.txt, and a softlink...

bug
📦 lib-vfs
priority-medium
needs-tests

`create-exe` spuriously fail, usually because of linking errors. Ideally, we should move `create-exe` to outside the wasmer crate, so we can test and build this functionality separately of the main...

📦 lib-cli
priority-medium
build-system

### Describe the bug I define import with `new_typed` for signature `fn() -> (i32, i32, i32, i32)`. On wasm side when I call this function, only first i32 is corrent,...

bug
📦 lib-vm
priority-medium

### Steps to Reproduce (1) The cfile is : ``` #include #include #include #include int path_remove_directory(int basedir_fd, const char *file_name) { printf("Enter path_remove_directory.\n"); if (unlinkat(basedir_fd, file_name, AT_REMOVEDIR) == -1) {...

bug
📦 lib-wasi
📦 lib-vfs
priority-medium

### Steps to Reproduce (1) The cfile is : ``` #include #include #include #include #include #include int path_readlink(int dir_fd, const char* new_link) { printf("Enter path_readlink.\n"); char target_path[100]; ssize_t len =...

bug
📦 lib-vfs
priority-medium