Staging
v0.8.1
Revision 92f90242994652d6b7afe0a2c8a61cf2bccc8c32 authored by Miss Islington (bot) on 23 December 2018, 20:48:00 UTC, committed by Ned Deily on 23 December 2018, 20:53:07 UTC

`BLDSHARED` needs to have both `LDFLAGS` and `LDFLAGS_NODIST`, not just `LDFLAGS_NODIST`; `PY_CORE_LDFLAGS` provides both.  For example, as it stands now with just `LDFLAGS_NODIST`, macOS universal builds are broken as the necessary `-arch` flags are no longer passed to the standard library extension module link step from `setup.py` resulting in extension modules being single architecture only.

https://bugs.python.org/issue35257
(cherry picked from commit 44a3ee07e30e18d83e2730c093d8b0e930f0a06c)

Co-authored-by: Ned Deily <nad@python.org>
1 parent 26c94c3
Raw File
clean.bat
@echo off
rem A batch program to clean a particular configuration,
rem just for convenience.

call "%~dp0build.bat" -t Clean %*
back to top