Skip to content
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

Support Apple tvOS in libstd #103503

Merged
merged 14 commits into from
Jun 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Note that posix_spawnp probably still does not work the way people ma…
…y want
  • Loading branch information
thomcc committed Jun 21, 2023
commit af0662f18cf4334a267397a71c3fdb3f4297f35f
8 changes: 5 additions & 3 deletions src/doc/rustc/src/platform-support/apple-tvos.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ missing or incomplete support:
- `std::process::Command`'s API will return an error if it is configured in a
manner which cannot be performed using `posix_spawn` -- this is because the
more flexible `fork`/`exec`-based approach is prohibited on these platforms in
favor of `posix_spawn{,p}`. A concrete set of cases where this will occur is
difficult to enumerate (and would quickly become stale), but in some cases it
may be worked around by tweaking the manner in which `Command` is invoked.
favor of `posix_spawn{,p}` (which still probably will get you rejected from
app stores, so is likely sideloading-only). A concrete set of cases where this
will occur is difficult to enumerate (and would quickly become stale), but in
some cases it may be worked around by tweaking the manner in which `Command`
is invoked.

## Building the target

Expand Down