]> git.lizzy.rs Git - rust.git/blob - src/librustc_back/target/asmjs_unknown_emscripten.rs
4d38b0d1705962afa24e58c81801073ea0569d67
[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 super::{Target, TargetOptions};
12 use super::emscripten_base::{cmd};
13
14 pub fn target() -> Result<Target, String> {
15     let opts = TargetOptions {
16         linker: cmd("emcc"),
17         ar: cmd("emar"),
18
19         dynamic_linking: false,
20         executables: true,
21         exe_suffix: ".js".to_string(),
22         linker_is_gnu: true,
23         allow_asm: false,
24         obj_is_bitcode: true,
25         is_like_emscripten: true,
26         max_atomic_width: Some(32),
27         post_link_args: vec!["-s".to_string(), "ERROR_ON_UNDEFINED_SYMBOLS=1".to_string()],
28         target_family: Some("unix".to_string()),
29         .. Default::default()
30     };
31     Ok(Target {
32         llvm_target: "asmjs-unknown-emscripten".to_string(),
33         target_endian: "little".to_string(),
34         target_pointer_width: "32".to_string(),
35         target_os: "emscripten".to_string(),
36         target_env: "".to_string(),
37         target_vendor: "unknown".to_string(),
38         data_layout: "e-p:32:32-i64:64-v128:32:128-n32-S128".to_string(),
39         arch: "asmjs".to_string(),
40         options: opts,
41     })
42 }