Skip to content

Commit

Permalink
sanitizers: Stabilize AddressSanitizer for aarch64-apple-darwin
Browse files Browse the repository at this point in the history
Stabilize AddressSanitizer for aarch64-apple-darwin since it was
promoted to Tier 1 in #128592.
  • Loading branch information
rcvalle committed Dec 20, 2024
1 parent cfb6c52 commit 98c6364
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub(crate) fn target() -> Target {
max_atomic_width: Some(128),
// FIXME: The leak sanitizer currently fails the tests, see #88132.
supported_sanitizers: SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::THREAD,
stable_sanitizers: SanitizerSet::ADDRESS,
..opts
},
}
Expand Down
1 change: 1 addition & 0 deletions src/doc/rustc/src/codegen-options/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,7 @@ of these sanitizers:

| Target | Sanitizers |
|-----------------------------|-----------------|
| aarch64-apple-darwin | address |
| aarch64-unknown-linux-gnu | address, leak |
| i686-pc-windows-msvc | address |
| i686-unknown-linux-gnu | address |
Expand Down
1 change: 1 addition & 0 deletions src/doc/rustc/src/sanitizers.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ of these sanitizers:

| Target | Sanitizers |
|-----------------------------|-----------------|
| aarch64-apple-darwin | address |
| aarch64-unknown-linux-gnu | address, leak |
| i686-pc-windows-msvc | address |
| i686-unknown-linux-gnu | address |
Expand Down

0 comments on commit 98c6364

Please sign in to comment.