about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-12-21 16:43:08 +0100
committerGitHub <noreply@github.com>2023-12-21 16:43:08 +0100
commit81e5ca4d975f2a45c4301ea577d82fd586032cb0 (patch)
tree650d2dc265929da22ff08bf7aa630be5735536ba
parent2b48e7dbcb5c298c1554a423f619e75923b04d31 (diff)
parentd9842a2060459394c77e8e8c39624b6afcfae8f5 (diff)
downloadrust-81e5ca4d975f2a45c4301ea577d82fd586032cb0.tar.gz
rust-81e5ca4d975f2a45c4301ea577d82fd586032cb0.zip
Rollup merge of #119176 - leohowell:fix-apple-watchos-target-name-error, r=lqd
Fix name error in aarch64_apple_watchos tier 3 target

fix llvm_target wrong name `aarch-apple-watchos` to `aarch64-apple-watchos`, sorry for my mistake.

previous pr: https://github.com/rust-lang/rust/pull/119074

r? compiler-team
-rw-r--r--compiler/rustc_target/src/spec/targets/aarch64_apple_watchos.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/aarch64_apple_watchos.rs b/compiler/rustc_target/src/spec/targets/aarch64_apple_watchos.rs
index b62666dcc7e..c2cf2c4e96d 100644
--- a/compiler/rustc_target/src/spec/targets/aarch64_apple_watchos.rs
+++ b/compiler/rustc_target/src/spec/targets/aarch64_apple_watchos.rs
@@ -4,7 +4,7 @@ use crate::spec::{Target, TargetOptions};
 pub fn target() -> Target {
     let base = opts("watchos", Arch::Arm64);
     Target {
-        llvm_target: "aarch-apple-watchos".into(),
+        llvm_target: "aarch64-apple-watchos".into(),
         pointer_width: 64,
         data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
         arch: "aarch64".into(),