]> git.lizzy.rs Git - rust.git/blob - src/librustc_back/target/asmjs_unknown_emscripten.rs
Rollup merge of #48432 - flip1995:lit_diag, r=oli-obk
[rust.git] / src / librustc_back / target / asmjs_unknown_emscripten.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use LinkerFlavor;
12 use super::{LinkArgs, Target, TargetOptions};
13
14 pub fn target() -> Result<Target, String> {
15     let mut args = LinkArgs::new();
16     args.insert(LinkerFlavor::Em,
17                 vec!["-s".to_string(),
18                      "ERROR_ON_UNDEFINED_SYMBOLS=1".to_string()]);
19
20     let opts = TargetOptions {
21         dynamic_linking: false,
22         executables: true,
23         exe_suffix: ".js".to_string(),
24         linker_is_gnu: true,
25         allow_asm: false,
26         obj_is_bitcode: true,
27         is_like_emscripten: true,
28         max_atomic_width: Some(32),
29         post_link_args: args,
30         target_family: Some("unix".to_string()),
31         codegen_backend: "emscripten".to_string(),
32         .. Default::default()
33     };
34     Ok(Target {
35         llvm_target: "asmjs-unknown-emscripten".to_string(),
36         target_endian: "little".to_string(),
37         target_pointer_width: "32".to_string(),
38         target_c_int_width: "32".to_string(),
39         target_os: "emscripten".to_string(),
40         target_env: "".to_string(),
41         target_vendor: "unknown".to_string(),
42         data_layout: "e-p:32:32-i64:64-v128:32:128-n32-S128".to_string(),
43         arch: "asmjs".to_string(),
44         linker_flavor: LinkerFlavor::Em,
45         options: opts,
46     })
47 }