Skip to content

Commit

Permalink
Rollup merge of #119176 - leohowell:fix-apple-watchos-target-name-err…
Browse files Browse the repository at this point in the history
…or, 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: #119074

r? compiler-team
  • Loading branch information
matthiaskrgr authored Dec 21, 2023
2 parents 2b48e7d + d9842a2 commit 81e5ca4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 81e5ca4

Please sign in to comment.