-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Added visionOS support for Apple Vision Pro #340
base: dev
Are you sure you want to change the base?
Conversation
let target = Target::for_triple(if cfg!(target_arch = "aarch64") { | ||
match is_visionos { | ||
true => "aarch64-apple-visionos", | ||
_ => "aarch64-apple-ios", // TODO: figure out how to check for sim here, or probably do this elsewhere, and just add -sim to the triple |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the simctl module, if we're using this then it's always a simulator
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, need to update this, we've done more stuff in our internal pipeline, and it's time to update it for 2.0.0 🥳
Related work: #208
Based on rust-lang/rust#121419