mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-02 22:02:14 +00:00
This patch cleans several warnings where mutable bindings are declared but used only as immutable bindings. It's a little bit opinionated patch. I think it's interesting to use `const` pointers as much as possible.
Wasmer Runtime C API
Generating header files
Run make capi
from wasmer project root directory
Running tests
The tests can be run via cargo test
, E.g. cargo test -p wasmer-runtime-c-api -- --nocapture
Running manually
cmake . && make && make test
from the lib/runtime-c-api/tests
directory