Skip to content

Commit c73d1ed

Browse files
authored
Rollup merge of rust-lang#144429 - Gelbpunkt:outline-atomics-aarch64-musl, r=Amanieu
Enable outline-atomics for aarch64-unknown-linux-musl They were disabled in bd287fa and haven't been causing problems for a while anymore, see rust-lang#89626 for details. The entire testsuite still passes on `aarch64-unknown-linux-musl` with this feature enabled.
2 parents 1b6fbc0 + 3d0dedd commit c73d1ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/targets/aarch64_unknown_linux_musl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub(crate) fn target() -> Target {
66
let mut base = base::linux_musl::opts();
77
base.max_atomic_width = Some(128);
88
base.supports_xray = true;
9-
base.features = "+v8a".into();
9+
base.features = "+v8a,+outline-atomics".into();
1010
base.stack_probes = StackProbeType::Inline;
1111
base.supported_sanitizers = SanitizerSet::ADDRESS
1212
| SanitizerSet::CFI

0 commit comments

Comments
 (0)