Skip to content

Commit 2e756e2

Browse files
add solaris sparcv9 support
* Update bootstrap to recognize the cputype 'sparcv9' (used on Solaris) * Change to never use -fomit-frame-pointer on Solaris or for sparc * Adds rust target sparcv9-sun-solaris Fixes #39901
1 parent 087c233 commit 2e756e2

File tree

4 files changed

+47
-1
lines changed

4 files changed

+47
-1
lines changed

src/bootstrap/bootstrap.py

+2
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,8 @@ def build_triple(self):
416416
ostype += 'abi64'
417417
elif cputype in {'powerpc', 'ppc', 'ppc64'}:
418418
cputype = 'powerpc'
419+
elif cputype == 'sparcv9':
420+
pass
419421
elif cputype in {'amd64', 'x86_64', 'x86-64', 'x64'}:
420422
cputype = 'x86_64'
421423
else:

src/libcompiler_builtins/build.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,15 @@ fn main() {
9292
// compiler-rt's build system already
9393
cfg.flag("-fno-builtin");
9494
cfg.flag("-fvisibility=hidden");
95-
cfg.flag("-fomit-frame-pointer");
95+
// Accepted practice on Solaris is to never omit frame pointer so that
96+
// system observability tools work as expected. In addition, at least
97+
// on Solaris, -fomit-frame-pointer on sparcv9 appears to generate
98+
// references to data outside of the current stack frame. A search of
99+
// the gcc bug database provides a variety of issues surrounding
100+
// -fomit-frame-pointer on non-x86 platforms.
101+
if !target.contains("solaris") && !target.contains("sparc") {
102+
cfg.flag("-fomit-frame-pointer");
103+
}
96104
cfg.flag("-ffreestanding");
97105
cfg.define("VISIBILITY_HIDDEN", None);
98106
}

src/librustc_back/target/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ supported_targets! {
200200
("armv7s-apple-ios", armv7s_apple_ios),
201201

202202
("x86_64-sun-solaris", x86_64_sun_solaris),
203+
("sparcv9-sun-solaris", sparcv9_sun_solaris),
203204

204205
("x86_64-pc-windows-gnu", x86_64_pc_windows_gnu),
205206
("i686-pc-windows-gnu", i686_pc_windows_gnu),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

Comments
 (0)