Skip to content

Commit 2ebd8f7

Browse files
committed
Fix sdkname for tvos simulator
1 parent f073fac commit 2ebd8f7

File tree

1 file changed

+1
-0
lines changed
  • compiler/rustc_codegen_ssa/src/back

1 file changed

+1
-0
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2877,6 +2877,7 @@ fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
28772877
}
28782878

28792879
let sdk_name = match (arch.as_ref(), os.as_ref()) {
2880+
("aarch64", "tvos") if llvm_target.ends_with("-simulator") => "appletvsimulator",
28802881
("aarch64", "tvos") => "appletvos",
28812882
("x86_64", "tvos") => "appletvsimulator",
28822883
("arm", "ios") => "iphoneos",

0 commit comments

Comments
 (0)