]> git.proxmox.com Git - rustc.git/blame - src/librustc_back/target/i686_unknown_dragonfly.rs
New upstream version 1.26.2+dfsg1
[rustc.git] / src / librustc_back / target / i686_unknown_dragonfly.rs
CommitLineData
1a4d82fc
JJ
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};
1a4d82fc 13
5bcae85e 14pub fn target() -> TargetResult {
1a4d82fc 15 let mut base = super::dragonfly_base::opts();
85aaf69f 16 base.cpu = "pentium4".to_string();
c30ab7b3 17 base.max_atomic_width = Some(64);
cc61c64b 18 base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m32".to_string());
041b39d2 19 base.stack_probes = true;
1a4d82fc 20
5bcae85e 21 Ok(Target {
1a4d82fc
JJ
22 llvm_target: "i686-unknown-dragonfly".to_string(),
23 target_endian: "little".to_string(),
24 target_pointer_width: "32".to_string(),
ea8adc8c 25 target_c_int_width: "32".to_string(),
54a0048b 26 data_layout: "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128".to_string(),
1a4d82fc
JJ
27 arch: "x86".to_string(),
28 target_os: "dragonfly".to_string(),
d9579d0f 29 target_env: "".to_string(),
b039eaaf 30 target_vendor: "unknown".to_string(),
cc61c64b 31 linker_flavor: LinkerFlavor::Gcc,
1a4d82fc 32 options: base,
5bcae85e 33 })
1a4d82fc 34}