]> git.proxmox.com Git - rustc.git/blame - src/librustc_back/target/x86_64_unknown_bitrig.rs
New upstream version 1.26.2+dfsg1
[rustc.git] / src / librustc_back / target / x86_64_unknown_bitrig.rs
CommitLineData
c34b1796
AL
1// Copyright 2014 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;
5bcae85e 12use target::{Target, TargetResult};
c34b1796 13
5bcae85e 14pub fn target() -> TargetResult {
c34b1796 15 let mut base = super::bitrig_base::opts();
5bcae85e 16 base.cpu = "x86-64".to_string();
c30ab7b3 17 base.max_atomic_width = Some(64);
cc61c64b 18 base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-m64".to_string()]);
041b39d2 19 base.stack_probes = true;
c34b1796 20
5bcae85e 21 Ok(Target {
c34b1796
AL
22 llvm_target: "x86_64-unknown-bitrig".to_string(),
23 target_endian: "little".to_string(),
24 target_pointer_width: "64".to_string(),
ea8adc8c 25 target_c_int_width: "32".to_string(),
54a0048b 26 data_layout: "e-m:e-i64:64-f80:128-n8:16:32:64-S128".to_string(),
c34b1796
AL
27 arch: "x86_64".to_string(),
28 target_os: "bitrig".to_string(),
d9579d0f 29 target_env: "".to_string(),
b039eaaf 30 target_vendor: "unknown".to_string(),
cc61c64b 31 linker_flavor: LinkerFlavor::Gcc,
c34b1796 32 options: base,
5bcae85e 33 })
c34b1796 34}