Skip to content

Commit 88560cf

Browse files
authored
Unrolled build for rust-lang#119176
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
2 parents 767453e + d9842a2 commit 88560cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/targets/aarch64_apple_watchos.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::spec::{Target, TargetOptions};
44
pub fn target() -> Target {
55
let base = opts("watchos", Arch::Arm64);
66
Target {
7-
llvm_target: "aarch-apple-watchos".into(),
7+
llvm_target: "aarch64-apple-watchos".into(),
88
pointer_width: 64,
99
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
1010
arch: "aarch64".into(),

0 commit comments

Comments
 (0)