Use LLVM features for arm64e_apple_ios target
We need to use LLVM features here. Otherwise we get warnings such as '+paca' is not a recognized feature for this target (ignoring feature)
This commit is contained in:
parent
3f8704355b
commit
fd0033c777
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ pub fn target() -> Target {
|
||||||
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
|
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
|
||||||
arch: arch.target_arch(),
|
arch: arch.target_arch(),
|
||||||
options: TargetOptions {
|
options: TargetOptions {
|
||||||
features: "+neon,+fp-armv8,+apple-a12,+v8.3a,+paca,+pacg".into(),
|
features: "+neon,+fp-armv8,+apple-a12,+v8.3a,+pauth".into(),
|
||||||
max_atomic_width: Some(128),
|
max_atomic_width: Some(128),
|
||||||
frame_pointer: FramePointer::NonLeaf,
|
frame_pointer: FramePointer::NonLeaf,
|
||||||
..base
|
..base
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue