[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-27 Thread Ned Deily
Ned Deily added the comment: Thanks for the easy-to-reproduce test case! It looks like you are running into the problem described in Issue22490 where venv with macOS framework builds could run into problems. A fix for this issue has recently been merged and will be released in upcoming

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
Ruben added the comment: 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

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
Ruben added the comment: Sorry, the error was missing, well, the actual error: ``` /opt/local/bin/ranlib: file: libpython3.8.a(dynamic_annotations.o) has no symbols /opt/local/bin/ranlib: file: libpython3.8.a(pymath.o) has no symbols gcc -Wl,-stack_size,100 -framework

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
Change by Ruben : Added file: https://bugs.python.org/file49053/make.log.gz ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
Change by Ruben : Added file: https://bugs.python.org/file49054/make.venv.log.gz ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
Change by Ruben : Added file: https://bugs.python.org/file49052/make.venv.log.gz ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
Change by Ruben : Added file: https://bugs.python.org/file49051/make.py.venv2.log.gz ___ Python tracker ___ ___ Python-bugs-list mailing

[issue40261] Build of Python where make is called from subprocess, within a virtualenv, breaks on macOS

2020-04-12 Thread Ruben
New submission from Ruben : This problem is driving me crazy. I'm working with a library (python-for-android) that builds python during a build process. Now, during this process, the classical workflow with `./configure` and `make` is being called from a subprocess. To try to isolate the