]> git.proxmox.com Git - rustc.git/blame - src/librustc_back/target/sparcv9_sun_solaris.rs
New upstream version 1.22.1+dfsg1
[rustc.git] / src / librustc_back / target / sparcv9_sun_solaris.rs
CommitLineData
8bb4bdeb
XL
1// Copyright 2016 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
cc61c64b 11use LinkerFlavor;
8bb4bdeb
XL
12use target::{Target, TargetResult};
13
14pub fn target() -> TargetResult {
15 let mut base = super::solaris_base::opts();
cc61c64b 16 base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-m64".to_string()]);
8bb4bdeb
XL
17 // llvm calls this "v9"
18 base.cpu = "v9".to_string();
19 base.max_atomic_width = Some(64);
ea8adc8c 20 base.exe_allocation_crate = None;
8bb4bdeb
XL
21
22 Ok(Target {
23 llvm_target: "sparcv9-sun-solaris".to_string(),
24 target_endian: "big".to_string(),
25 target_pointer_width: "64".to_string(),
ea8adc8c 26 target_c_int_width: "32".to_string(),
8bb4bdeb
XL
27 data_layout: "E-m:e-i64:64-n32:64-S128".to_string(),
28 // Use "sparc64" instead of "sparcv9" here, since the former is already
29 // used widely in the source base. If we ever needed ABI
30 // differentiation from the sparc64, we could, but that would probably
31 // just be confusing.
32 arch: "sparc64".to_string(),
33 target_os: "solaris".to_string(),
34 target_env: "".to_string(),
35 target_vendor: "sun".to_string(),
cc61c64b 36 linker_flavor: LinkerFlavor::Gcc,
8bb4bdeb
XL
37 options: base,
38 })
39}