Skip to content

Commit 4878034

Browse files
committed
Auto merge of #88454 - devnexen:sunos_asan, r=wesleywiser
sunos systems add sanitizer supported.
2 parents 577a76f + 8539a3c commit 4878034

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

compiler/rustc_target/src/spec/x86_64_pc_solaris.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::spec::{LinkerFlavor, StackProbeType, Target};
1+
use crate::spec::{LinkerFlavor, SanitizerSet, StackProbeType, Target};
22

33
pub fn target() -> Target {
44
let mut base = super::solaris_base::opts();
@@ -8,6 +8,7 @@ pub fn target() -> Target {
88
base.max_atomic_width = Some(64);
99
// don't use probe-stack=inline-asm until rust#83139 and rust#84667 are resolved
1010
base.stack_probes = StackProbeType::Call;
11+
base.supported_sanitizers = SanitizerSet::ADDRESS;
1112

1213
Target {
1314
llvm_target: "x86_64-pc-solaris".to_string(),

compiler/rustc_target/src/spec/x86_64_unknown_illumos.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
use crate::spec::{LinkerFlavor, Target};
1+
use crate::spec::{LinkerFlavor, SanitizerSet, Target};
22

33
pub fn target() -> Target {
44
let mut base = super::illumos_base::opts();
55
base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-m64".to_string(), "-std=c99".to_string()]);
66
base.cpu = "x86-64".to_string();
77
base.max_atomic_width = Some(64);
8+
base.supported_sanitizers = SanitizerSet::ADDRESS;
89

910
Target {
1011
// LLVM does not currently have a separate illumos target,

src/bootstrap/native.rs

+2
Original file line numberDiff line numberDiff line change
@@ -839,6 +839,8 @@ fn supported_sanitizers(
839839
"x86_64-unknown-netbsd" => {
840840
common_libs("netbsd", "x86_64", &["asan", "lsan", "msan", "tsan"])
841841
}
842+
"x86_64-unknown-illumos" => common_libs("illumos", "x86_64", &["asan"]),
843+
"x86_64-pc-solaris" => common_libs("solaris", "x86_64", &["asan"]),
842844
"x86_64-unknown-linux-gnu" => {
843845
common_libs("linux", "x86_64", &["asan", "lsan", "msan", "tsan"])
844846
}

0 commit comments

Comments
 (0)