Disable aarch64 outline atomics with musl for now.
The introduced dependency on `getauxval`causes linking problems with musl, see #89626.
This commit is contained in:
parent
68ca579406
commit
bd287fa508
1 changed files with 1 additions and 5 deletions
|
@ -9,10 +9,6 @@ pub fn target() -> Target {
|
||||||
pointer_width: 64,
|
pointer_width: 64,
|
||||||
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
|
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
|
||||||
arch: "aarch64".to_string(),
|
arch: "aarch64".to_string(),
|
||||||
options: TargetOptions {
|
options: TargetOptions { mcount: "\u{1}_mcount".to_string(), ..base },
|
||||||
features: "+outline-atomics".to_string(),
|
|
||||||
mcount: "\u{1}_mcount".to_string(),
|
|
||||||
..base
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue