wasi-libc 0.0~git20230113.4362b18-1 source package in Ubuntu

Changelog

wasi-libc (0.0~git20230113.4362b18-1) unstable; urgency=medium

  * Upload to unstable

 -- Fabian Grünbichler <email address hidden>  Sun, 10 Sep 2023 19:22:19 +0200

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

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
wasi-libc_0.0~git20230113.4362b18-1.dsc 2.1 KiB 631a61a23cbd96f2b1873afe1d8e32a28aaf210f9c5c7334bbd19c145a95c245
wasi-libc_0.0~git20230113.4362b18.orig.tar.xz 840.3 KiB 58821da562132abb1cf11bf38957a82c95bea3ae2509f5fb9c1084cbc2701c35
wasi-libc_0.0~git20230113.4362b18-1.debian.tar.xz 7.2 KiB ce74fb3236d77176df8e971f5c7679794677e60cfebc3c95c7fc596a11f0778d

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.