rustc_target/spec/targets/wasm32_wasip1.rs
1//! The `wasm32-wasip1` enables compiling to WebAssembly using the first
2//! version of the WASI standard, called "preview1". This version of the
3//! standard was never formally specified and WASI has since evolved to a
4//! "preview2". This target in rustc uses the previous version of the proposal.
5//!
6//! This target uses the syscalls defined at
7//! <https://github.com/WebAssembly/WASI/tree/main/legacy/preview1>.
8//!
9//! Note that this target was historically called `wasm32-wasi` originally and
10//! was since renamed to `wasm32-wasip1` after the preview2 target was
11//! introduced.
12
13use crate::spec::{Cc, LinkSelfContainedDefault, LinkerFlavor, Target, base, crt_objects};
14
15pub(crate) fn target() -> Target {
16 let mut options = base::wasm::options();
17
18 options.os = "wasi".into();
19 options.env = "p1".into();
20 options.add_pre_link_args(LinkerFlavor::WasmLld(Cc::Yes), &["--target=wasm32-wasip1"]);
21
22 options.pre_link_objects_self_contained = crt_objects::pre_wasi_self_contained();
23 options.post_link_objects_self_contained = crt_objects::post_wasi_self_contained();
24
25 // FIXME: Figure out cases in which WASM needs to link with a native toolchain.
26 options.link_self_contained = LinkSelfContainedDefault::True;
27
28 // Right now this is a bit of a workaround but we're currently saying that
29 // the target by default has a static crt which we're taking as a signal
30 // for "use the bundled crt". If that's turned off then the system's crt
31 // will be used, but this means that default usage of this target doesn't
32 // need an external compiler but it's still interoperable with an external
33 // compiler if configured correctly.
34 options.crt_static_default = true;
35 options.crt_static_respected = true;
36
37 // Allow `+crt-static` to create a "cdylib" output which is just a wasm file
38 // without a main function.
39 options.crt_static_allows_dylibs = true;
40
41 // WASI's `sys::args::init` function ignores its arguments; instead,
42 // `args::args()` makes the WASI API calls itself.
43 options.main_needs_argc_argv = false;
44
45 // And, WASI mangles the name of "main" to distinguish between different
46 // signatures.
47 options.entry_name = "__main_void".into();
48
49 Target {
50 llvm_target: "wasm32-wasip1".into(),
51 metadata: crate::spec::TargetMetadata {
52 description: Some("WebAssembly with WASI".into()),
53 tier: Some(2),
54 host_tools: Some(false),
55 std: Some(true),
56 },
57 pointer_width: 32,
58 data_layout: "e-m:e-p:32:32-p10:8:8-p20:8:8-i64:64-i128:128-n32:64-S128-ni:1:10:20".into(),
59 arch: "wasm32".into(),
60 options,
61 }
62}