wasi-libc 0.0~git20230621.7018e24-2 source package in Ubuntu

Changelog

wasi-libc (0.0~git20230621.7018e24-2) unstable; urgency=medium

  * upload to unstable

 -- Fabian Grünbichler <email address hidden>  Mon, 27 May 2024 14:48:31 +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

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
wasi-libc_0.0~git20230621.7018e24-2.dsc 2.1 KiB 0373861f2f1dcbf6cdad6b316fc0a564f49b12f528b00052f5f50a7dd05e5f60
wasi-libc_0.0~git20230621.7018e24.orig.tar.xz 840.6 KiB 0d9bb67007cb2ab318e59767e8f089878985c91fe0bbecf59c0ef43fe7610f56
wasi-libc_0.0~git20230621.7018e24-2.debian.tar.xz 6.9 KiB 2b4b6d95c851a9c13a8cf4fa7f6b7e99eb5629e92607ff874d066a228783d8a2

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.