Skip to content

Commit

Permalink
Unrolled build for rust-lang#119653
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#119653 - devnexen:update_fuchsia_compiler_rt_support, r=petrochenkov

compiler: update Fuchsia sanitizer support.
  • Loading branch information
rust-timer authored Jan 6, 2024
2 parents 9212108 + d70f0e3 commit 9263db4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ pub fn target() -> Target {
base.plt_by_default = false;
base.max_atomic_width = Some(64);
base.stack_probes = StackProbeType::Inline;
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI;
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::LEAK;
base.supports_xray = true;

Target {
llvm_target: "x86_64-unknown-fuchsia".into(),
Expand Down

0 comments on commit 9263db4

Please sign in to comment.