wasi-sdk icon indicating copy to clipboard operation
wasi-sdk copied to clipboard

WASI-enabled WebAssembly C/C++ toolchain

Results 103 wasi-sdk issues
Sort by recently updated
recently updated
newest added

A very minimal code sample like this: ```c++ #include int main() { auto a = std::shared_ptr(new int(3)); return *a + 40; } ``` compiled with WASI SDK like this: ```...

Hi, I write a HTTP/GET method by use some net/sys api from wasi-sdk, and build it to wasm by CMake. But When I execute the .wasm file, it output :...

I need to call python Function in c++ code, and link with wasi-sdk libs. But fault at: ![微信截图_20220105220659](https://user-images.githubusercontent.com/29321205/148233429-6c371d87-6e57-4538-b26b-66de1e36fcc5.png) the cpp file is: ```c++ //python-call.cpp #include "/usr/include/python3.6/Python.h" #include #include #include #include...

when --target=wasm64-wasi will be supported?

It would be nice to have an official wasi-sdk Docker image for use in CI; the [current images I see on Docker Hub are unofficial](https://hub.docker.com/search?q=wasi-sdk&type=image).

I'm linking some object files(compiled with `-fPIC`) into a shared library using wasm-ld and wasi-sdk, but I get errors like the following ``` /opt/emsdk/upstream/bin/wasm-ld --shared -L/opt/wasi-sdk/share/wasi-sysroot/lib/wasm32-wasi -lc --no-entry --allow-undefined --export=eval...

Hi there, Any thoughts on when, how, why, and example code to use the [multi-memory](https://github.com/WebAssembly/multi-memory/blob/master/proposals/multi-memory/Overview.md) support with wasi-sdk from C/C++?

WASI SDK 12 came with clang version 11.0.0. WASI SDK 13 was released today, and it includes clang version 10.0.0. I downloaded and extracted `wasi-sdk-13.0-linux.tar.gz` from the releases page. I...

Hi, I would like to build WASM modules that are loadable with the Wasmtime runtime, but this seems to require the -shared option and I ran into a couple errors...

Hello, I am getting an error message on clone: From https://github.com/llvm/llvm-project 5c52753d9ff2..7b424b933355 main -> origin/main fatal: remote error: upload-pack: not our ref bb31aec2cc85b6e2e85e687d086f85408b166c42 Fetched in submodule path 'src/llvm-project', but it...