about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtyom Tetyukhin <51746822+arttet@users.noreply.github.com>2023-12-19 16:46:30 +0400
committerArtyom Tetyukhin <51746822+arttet@users.noreply.github.com>2023-12-19 16:46:30 +0400
commitfd0033c777bab3f57d648f3bfeedae6a7e83c220 (patch)
treea22264afa5aed1b8b8e33a21cfa3777fe2a79c9c
parent3f8704355b07a4fa4c866f338cb386038bcff8b2 (diff)
downloadrust-fd0033c777bab3f57d648f3bfeedae6a7e83c220.tar.gz
rust-fd0033c777bab3f57d648f3bfeedae6a7e83c220.zip
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)
-rw-r--r--compiler/rustc_target/src/spec/targets/arm64e_apple_ios.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/arm64e_apple_ios.rs b/compiler/rustc_target/src/spec/targets/arm64e_apple_ios.rs
index 863fd2fce9a..38657d7f1df 100644
--- a/compiler/rustc_target/src/spec/targets/arm64e_apple_ios.rs
+++ b/compiler/rustc_target/src/spec/targets/arm64e_apple_ios.rs
@@ -16,7 +16,7 @@ pub fn target() -> Target {
         data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
         arch: arch.target_arch(),
         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),
             frame_pointer: FramePointer::NonLeaf,
             ..base