Skip to content

Commit

Permalink
Unrolled build for rust-lang#119176
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#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: rust-lang#119074

r? compiler-team
  • Loading branch information
rust-timer committed Dec 21, 2023
2 parents 767453e d9842a2 commit 88560cf
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 88560cf

Please sign in to comment.