diff options
| author | Florian Bartels <Florian.Bartels@elektrobit.com> | 2023-03-19 11:00:18 +0100 |
|---|---|---|
| committer | Florian Bartels <Florian.Bartels@elektrobit.com> | 2023-06-02 16:12:21 +0200 |
| commit | d8f21101ec383d33c68f1867faf2ba74b3dca1a8 (patch) | |
| tree | f3aa45997bb8359c59acd98de756cbe892bee85a | |
| parent | bdb475cf6c5712e706146635c4dd8bf6b2e506ff (diff) | |
| download | rust-d8f21101ec383d33c68f1867faf2ba74b3dca1a8.tar.gz rust-d8f21101ec383d33c68f1867faf2ba74b3dca1a8.zip | |
Remove "one thread in tests" limitation in nto-qnx.md
| -rw-r--r-- | src/doc/rustc/src/platform-support/nto-qnx.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/doc/rustc/src/platform-support/nto-qnx.md b/src/doc/rustc/src/platform-support/nto-qnx.md index 0d815c9b598..b376c4a84ac 100644 --- a/src/doc/rustc/src/platform-support/nto-qnx.md +++ b/src/doc/rustc/src/platform-support/nto-qnx.md @@ -164,18 +164,12 @@ export exclude_tests=' --exclude tests/run-make-fulldeps' env $build_env \ - ./x.py test -j 1 \ + ./x.py test \ $exclude_tests \ --stage 1 \ --target x86_64-pc-nto-qnx710 ``` -Currently, only one thread can be used when testing due to limitations in `libc::fork` and `libc::posix_spawnp`. -See [fork documentation](https://www.qnx.com/developers/docs/7.1/#com.qnx.doc.neutrino.lib_ref/topic/f/fork.html) -(error section) for more information. -This can be achieved by using the `-j 1` parameter in the `x.py` call. -This issue is being researched and we will try to allow parallelism in the future. - ## Building Rust programs Rust does not yet ship pre-compiled artifacts for this target. |
