wasi-libc 0.0~git20201130.5879558-1 source package in Ubuntu
Changelog
wasi-libc (0.0~git20201130.5879558-1) unstable; urgency=medium * Upload to unstable. -- Ximin Luo <email address hidden> Wed, 29 Sep 2021 19:55:26 +0100
Upload details
- Uploaded by:
- Rust Maintainers
- Uploaded to:
- Sid
- Original maintainer:
- Rust Maintainers
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Jammy | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
wasi-libc_0.0~git20201130.5879558-1.dsc | 1.4 KiB | ccce7b5c04977b6591b83afe04199ab7476d945eec1882211ea3d32b70af5c0d |
wasi-libc_0.0~git20201130.5879558.orig.tar.xz | 811.7 KiB | 475208011db1ecacfe8e3e9d32900a7834ccbefcd86bec702068fa361acf37b0 |
wasi-libc_0.0~git20201130.5879558-1.debian.tar.xz | 6.3 KiB | 363a04ab0f2a3f08b441bf4557a8c4a1579e71f68997c2b9489add27090ec96a |
Available diffs
No changes file available.
Binary packages built by this source
- wasi-libc: WASI libc implementation for WebAssembly
This is a work in progress. It's usable for many purposes, though the APIs
aren't stable yet. For example, this is used by the Rust compiler to build
its standard library for the wasm32-wasi target.
.
First, it's a usable libc. It builds a "libc" which can be used by compilers,
such as Clang 8.0, using the wasm32-wasi target. It's a work in progress, but
it is already sufficient to run basic programs.
.
Second, it's a "reference" implementation, which means the interfaces defined
here can be used by other tools and libraries, even if they don't use all the
actual implementations here. For example, we don't expect everyone will want to
use the exact malloc implementation provided here, but tools and libraries
using an ABI-compatible malloc interface will be able to interoperate
regardless of which actual implementation is used.
.
Third, it's an example showing the use of the WASI API. The libc functionality
is implemented using calls to WASI functions.