diff options
| author | Brian M <bmisiak@me.com> | 2023-05-25 11:24:00 -0700 |
|---|---|---|
| committer | Brian M <bmisiak@me.com> | 2023-05-25 11:24:00 -0700 |
| commit | a61f026182cb0fa5830156b0ef29c28bc4ccfe99 (patch) | |
| tree | 45db02dd8714e5b86d177bfec35419d4605e890e | |
| parent | d816b8b26469db31cef8214a07756c3aa5009d79 (diff) | |
| download | rust-a61f026182cb0fa5830156b0ef29c28bc4ccfe99.tar.gz rust-a61f026182cb0fa5830156b0ef29c28bc4ccfe99.zip | |
Mac Catalyst: specify 14.0 deployment taregt in llvm_target
| -rw-r--r-- | compiler/rustc_target/src/spec/aarch64_apple_ios_macabi.rs | 2 | ||||
| -rw-r--r-- | compiler/rustc_target/src/spec/x86_64_apple_ios_macabi.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_target/src/spec/aarch64_apple_ios_macabi.rs b/compiler/rustc_target/src/spec/aarch64_apple_ios_macabi.rs index 2b135b67034..e2df7e0bdcc 100644 --- a/compiler/rustc_target/src/spec/aarch64_apple_ios_macabi.rs +++ b/compiler/rustc_target/src/spec/aarch64_apple_ios_macabi.rs @@ -2,7 +2,7 @@ use super::apple_base::{opts, Arch}; use crate::spec::{Cc, FramePointer, LinkerFlavor, Lld, Target, TargetOptions}; pub fn target() -> Target { - let llvm_target = "arm64-apple-ios-macabi"; + let llvm_target = "arm64-apple-ios14.0-macabi"; let arch = Arch::Arm64_macabi; let mut base = opts("ios", arch); diff --git a/compiler/rustc_target/src/spec/x86_64_apple_ios_macabi.rs b/compiler/rustc_target/src/spec/x86_64_apple_ios_macabi.rs index 5a3e2a79bb9..9f3b0fab697 100644 --- a/compiler/rustc_target/src/spec/x86_64_apple_ios_macabi.rs +++ b/compiler/rustc_target/src/spec/x86_64_apple_ios_macabi.rs @@ -2,7 +2,7 @@ use super::apple_base::{opts, Arch}; use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target, TargetOptions}; pub fn target() -> Target { - let llvm_target = "x86_64-apple-ios-macabi"; + let llvm_target = "x86_64-apple-ios14.0-macabi"; let arch = Arch::X86_64_macabi; let mut base = opts("ios", arch); |
