diff options
| author | Thom Chiovoloni <thom@shift.click> | 2023-06-21 15:01:12 -0700 |
|---|---|---|
| committer | Thom Chiovoloni <thom@shift.click> | 2023-06-21 15:01:12 -0700 |
| commit | af0662f18cf4334a267397a71c3fdb3f4297f35f (patch) | |
| tree | 54cc5fc0d6274aadc84bada41c34f6d341add985 | |
| parent | 5ef4d1fb2e39f835307c40d4cde45409e22d5750 (diff) | |
| download | rust-af0662f18cf4334a267397a71c3fdb3f4297f35f.tar.gz rust-af0662f18cf4334a267397a71c3fdb3f4297f35f.zip | |
Note that posix_spawnp probably still does not work the way people may want
| -rw-r--r-- | src/doc/rustc/src/platform-support/apple-tvos.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/doc/rustc/src/platform-support/apple-tvos.md b/src/doc/rustc/src/platform-support/apple-tvos.md index 5a22402324c..d87fd1959b4 100644 --- a/src/doc/rustc/src/platform-support/apple-tvos.md +++ b/src/doc/rustc/src/platform-support/apple-tvos.md @@ -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 |
