]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/wasm64_unknown_unknown.rs
Auto merge of #97800 - pnkfelix:issue-97463-fix-aarch64-call-abi-does-not-zeroext...
[rust.git] / compiler / rustc_target / src / spec / wasm64_unknown_unknown.rs
1 //! A "bare wasm" target representing a WebAssembly output that makes zero
2 //! assumptions about its environment.
3 //!
4 //! The `wasm64-unknown-unknown` target is intended to encapsulate use cases
5 //! that do not rely on any imported functionality. The binaries generated are
6 //! entirely self-contained by default when using the standard library. Although
7 //! the standard library is available, most of it returns an error immediately
8 //! (e.g. trying to create a TCP stream or something like that).
9
10 use super::wasm_base;
11 use super::{LinkerFlavor, LldFlavor, Target};
12
13 pub fn target() -> Target {
14     let mut options = wasm_base::options();
15     options.os = "unknown".into();
16     options.linker_flavor = LinkerFlavor::Lld(LldFlavor::Wasm);
17
18     options.add_pre_link_args(
19         LinkerFlavor::Lld(LldFlavor::Wasm),
20         &[
21             // For now this target just never has an entry symbol no matter the output
22             // type, so unconditionally pass this.
23             "--no-entry",
24             "-mwasm64",
25         ],
26     );
27     options.add_pre_link_args(
28         LinkerFlavor::Gcc,
29         &[
30             // Make sure clang uses LLD as its linker and is configured appropriately
31             // otherwise
32             "--target=wasm64-unknown-unknown",
33             "-Wl,--no-entry",
34         ],
35     );
36
37     // Any engine that implements wasm64 will surely implement the rest of these
38     // features since they were all merged into the official spec by the time
39     // wasm64 was designed.
40     options.features = "+bulk-memory,+mutable-globals,+sign-ext,+nontrapping-fptoint".into();
41
42     Target {
43         llvm_target: "wasm64-unknown-unknown".into(),
44         pointer_width: 64,
45         data_layout: "e-m:e-p:64:64-p10:8:8-p20:8:8-i64:64-n32:64-S128-ni:1:10:20".into(),
46         arch: "wasm64".into(),
47         options,
48     }
49 }