osokin opened issue #6962:
Hi,
I've tried to compile
wasmtime
on NetBSD 9.3 and it's failed with theunsupported platform
error in
https://github.com/bytecodealliance/wasmtime/blob/main/crates/runtime/src/traphandlers/unix.rs#L257There are limited number of OSes are supported: FreeBSD, Linux, macOS, System/390
Is there plans to support other operating system?
Thank you.
alexcrichton added the wasmtime:platform-support label to Issue #6962.
alexcrichton commented on issue #6962:
PRs for unsupported platforms are welcome as they fit into our tier 3 category, and I'm not aware of anyone currently working on or planning to add support along these lines.
cfallin commented on issue #6962:
@osokin you may be interested in #2980, in which I got Wasmtime working on OpenBSD at one point.
We ended up not merging this (I dropped the effort) because it was a bit of a moving target to get the system-level crates working and in particular, to get a recent-enough Rust, since rustup doesn't carry binaries for OpenBSD at all and the stable release's system package is too old for the MSRV approach most of the Rust community takes. (NetBSD/x86-64 does have rustup binaries, but e.g. aarch64 does not, so same issue there.)
IMHO at least, the most useful effort at this point would be to get Rust to provide binaries for OpenBSD and NetBSD on more architectures (x86-64, aarch64, riscv64 for OpenBSD; the latter two for NetBSD and I think FreeBSD too). Then verify compatibility (and add CI jobs to keep things compiling?) in the system crates we use -- the cap-std series, etc. Finally whatever few lines of code are needed in the
traphandlers
module are fine, as Alex notes, under tier 3; we can even add check-jobs to keep things compiling, with the understanding we could disable it at any point if it gets in the way too much.
Last updated: Nov 22 2024 at 17:03 UTC