This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rdbisme
Recipients ned.deily, rdbisme, ronaldoussoren
Date 2020-04-13.01:53:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586742805.53.0.206731869461.issue40261@roundup.psfhosted.org>
In-reply-to
Content
I just tested on a fresh macOS 10.15.3 Virtual Machine (on the same host machine as the one of previous messages) and I can reproduce the problem: 

1. Install Command Line Tools (xcode-build --install)
2. Download Python 3.8.1
3. Extract tarball
4. Create a file make.py with the following python code
```
import subprocess

subprocess.run(["./configure"])
subprocess.run(["make", "-j4"])
```
and save it in the Python-3.8.1 source tree
6. Create a venv doing `python -m venv venv` in the source tree
7. Activate the virtual env `source venv/bin/activate`
5. Run it doing `python3 make.py`

The build fails with the error described before. 

If you now, instead, run the make directly `make -j8` the buids proceeds as expected.
History
Date User Action Args
2020-04-13 01:53:25rdbismesetrecipients: + rdbisme, ronaldoussoren, ned.deily
2020-04-13 01:53:25rdbismesetmessageid: <1586742805.53.0.206731869461.issue40261@roundup.psfhosted.org>
2020-04-13 01:53:25rdbismelinkissue40261 messages
2020-04-13 01:53:25rdbismecreate