Skip to content

Commit 1cae91e

Browse files
committed
compiler: update solaris and illumos spec to support TSAN.
1 parent f59d577 commit 1cae91e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_target/src/spec/x86_64_pc_solaris.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn target() -> Target {
77
base.vendor = "pc".into();
88
base.max_atomic_width = Some(64);
99
base.stack_probes = StackProbeType::X86;
10-
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI;
10+
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::THREAD;
1111

1212
Target {
1313
llvm_target: "x86_64-pc-solaris".into(),

compiler/rustc_target/src/spec/x86_64_unknown_illumos.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub fn target() -> Target {
55
base.add_pre_link_args(LinkerFlavor::Unix(Cc::Yes), &["-m64", "-std=c99"]);
66
base.cpu = "x86-64".into();
77
base.max_atomic_width = Some(64);
8-
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI;
8+
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::THREAD;
99

1010
Target {
1111
// LLVM does not currently have a separate illumos target,

0 commit comments

Comments
 (0)