New submission from Rouslan Korneychuk: When building Python, the setup.py script will use values from sysconfig, even when cross compiling. When cross compiling, the interpreter that runs setup.py is configured for the build system, not the host system, so the wrong values are used. This patch should fix that.
It should be noted that the updated script assumes it is run from the build directory (like the Makefile) and that the script is at the top-level source directory. Also it uses a private method from sysconfig. This is unavoidable without modifying the sysconfig interface (or duplicating code). ---------- components: Cross-Build files: setup-fix.patch keywords: patch messages: 277340 nosy: Alex.Willmer, Rouslan Korneychuk priority: normal severity: normal status: open title: setup.py uses build Python's configuration when cross-compiling type: behavior versions: Python 3.5 Added file: http://bugs.python.org/file44803/setup-fix.patch _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28266> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com