wasi-libc 0.0~git20210922.ad51334-1 source package in Ubuntu

Changelog

wasi-libc (0.0~git20210922.ad51334-1) unstable; urgency=medium

  * Upload to unstable.

 -- Ximin Luo <email address hidden>  Tue, 08 Mar 2022 10:49:36 +0000

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 Pocket Published Component Section
Kinetic release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
wasi-libc_0.0~git20210922.ad51334-1.dsc 1.4 KiB 1cf8b9c839421e91373824b90722b7ca0b66d13db85b4e42d30fd064fc62a358
wasi-libc_0.0~git20210922.ad51334.orig.tar.xz 821.6 KiB 6a303ecf53ff3daac4b6791199d35bb23b3a86fc7f68b486eb5fab2e9c551a99
wasi-libc_0.0~git20210922.ad51334-1.debian.tar.xz 6.7 KiB 935b38808b913659d93c6b863317c0df7d3b1953e111f1524339c8dc26c11834

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.