diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2025-07-26 22:42:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-26 22:42:36 -0400 |
| commit | aaa37e55d70af902f09e4f3c8231a6dee33f3728 (patch) | |
| tree | b585ea2837bdf8cc67d5fa0cce7d157dd379db4c | |
| parent | d8099982bcca212da5e145474813d45084058ac4 (diff) | |
| parent | 3d0dedd90e1d28351f15b7353075c46268c94101 (diff) | |
| download | rust-aaa37e55d70af902f09e4f3c8231a6dee33f3728.tar.gz rust-aaa37e55d70af902f09e4f3c8231a6dee33f3728.zip | |
Rollup merge of #144429 - Gelbpunkt:outline-atomics-aarch64-musl, r=Amanieu
Enable outline-atomics for aarch64-unknown-linux-musl They were disabled in bd287fa5084f2e153c1044632f9f3d190f090d69 and haven't been causing problems for a while anymore, see https://github.com/rust-lang/rust/issues/89626 for details. The entire testsuite still passes on `aarch64-unknown-linux-musl` with this feature enabled.
| -rw-r--r-- | compiler/rustc_target/src/spec/targets/aarch64_unknown_linux_musl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/aarch64_unknown_linux_musl.rs b/compiler/rustc_target/src/spec/targets/aarch64_unknown_linux_musl.rs index 58daaa03675..478726fbef6 100644 --- a/compiler/rustc_target/src/spec/targets/aarch64_unknown_linux_musl.rs +++ b/compiler/rustc_target/src/spec/targets/aarch64_unknown_linux_musl.rs @@ -6,7 +6,7 @@ pub(crate) fn target() -> Target { let mut base = base::linux_musl::opts(); base.max_atomic_width = Some(128); base.supports_xray = true; - base.features = "+v8a".into(); + base.features = "+v8a,+outline-atomics".into(); base.stack_probes = StackProbeType::Inline; base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI |
