Skip to content

Commit 3d0dedd

Browse files
committed
Enable outline-atomics for aarch64-unknown-linux-musl
They were disabled in bd287fa and haven't been causing problems for a while anymore. The entire testsuite still passes on aarch64-unknown-linux-musl with this feature enabled. Signed-off-by: Jens Reidel <[email protected]>
1 parent 5d22242 commit 3d0dedd

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)