-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
STD support for PSVita #110638
STD support for PSVita #110638
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Mark-Simulacrum (or someone else) soon. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
|
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
These commits modify compiler targets. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
src/doc/rustc/src/platform-support/armv7-sony-vita-newlibeabihf.md
Outdated
Show resolved
Hide resolved
Sorry for the force-push spam. rust-lang/libc#3209 is merged, rust-lang/backtrace-rs#523 is waiting for review. I would rather wait until |
@rustbot author |
Now that libc is released, waiting for rust-lang/backtrace-rs#523 to be merged (I assume CI has to be fixed first for rust nightly in its master, but that's out of the scope of my PRs). After that, I'll update and un-draft this PR. |
These commits modify the If this was unintentional then you should revert the changes before this PR is merged. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@rustbot label -S-waiting-on-author +S-waiting-on-review |
Please squash commits, r=me with that done. |
@nikarh: 🔑 Insufficient privileges: Not in reviewers |
@bors r=Mark-Simulacrum |
@nikarh: 🔑 Insufficient privileges: Not in reviewers |
@bors r=Mark-Simulacrum |
Rollup of 7 pull requests Successful merges: - rust-lang#105354 (Add deployment-target --print flag for Apple targets) - rust-lang#110377 (Update max_atomic_width of armv7r and armv7_sony_vita targets to 64.) - rust-lang#110638 (STD support for PSVita) - rust-lang#111211 (Don't compute trait super bounds unless they're positive) - rust-lang#111315 (Remove `identity_future` from stdlib) - rust-lang#111331 (Mark s390x condition code register as clobbered in inline assembly) - rust-lang#111332 (Improve inline asm for LoongArch) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Does it output as a .vpk file or an eboot.bin? Do you need VitaSDK to use this for Vita? |
All relevant doc is here: tldr; you can create a static lib in Rust, link it with VitaSDK to an elf, and then do the rest up to vpk with VitaSDK tools. |
This PR adds std support for
armv7-sony-vita-newlibeabihf
target.The work here is fairly similar to #95897, just for a different target platform.
This depends on the following pull requests:
rust-lang/backtrace-rs#523
rust-lang/libc#3209