|
| 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 | + |
| 11 | +use target::{Target, TargetResult}; |
| 12 | + |
| 13 | +pub fn target() -> TargetResult { |
| 14 | + let mut base = super::solaris_base::opts(); |
| 15 | + base.pre_link_args.push("-m64".to_string()); |
| 16 | + // llvm calls this "v9" |
| 17 | + base.cpu = "v9".to_string(); |
| 18 | + base.max_atomic_width = Some(64); |
| 19 | + |
| 20 | + Ok(Target { |
| 21 | + llvm_target: "sparcv9-sun-solaris".to_string(), |
| 22 | + target_endian: "big".to_string(), |
| 23 | + target_pointer_width: "64".to_string(), |
| 24 | + data_layout: "E-m:e-i64:64-n32:64-S128".to_string(), |
| 25 | + // Use "sparc64" instead of "sparcv9" here, since the former is already |
| 26 | + // used widely in the source base. If we ever needed ABI |
| 27 | + // differentiation from the sparc64, we could, but that would probably |
| 28 | + // just be confusing. |
| 29 | + arch: "sparc64".to_string(), |
| 30 | + target_os: "solaris".to_string(), |
| 31 | + target_env: "".to_string(), |
| 32 | + target_vendor: "sun".to_string(), |
| 33 | + options: base, |
| 34 | + }) |
| 35 | +} |
0 commit comments