Build
-----
-- Issue #24421: Compile Modules/_math.c once, before building extensions.
- Previously it could fail to compile properly if the math and cmath builds
- were concurrent.
-
+ - Issue #26465: Update Windows builds to use OpenSSL 1.0.2g.
+
- Issue #25348: Added ``--pgo`` and ``--pgo-job`` arguments to
``PCbuild\build.bat`` for building with Profile-Guided Optimization. The
- old ``PCbuild\build_pgo.bat`` script is now deprecated, and simply calls
- ``PCbuild\build.bat --pgo %*``.
+ old ``PCbuild\build_pgo.bat`` script is removed.
- Issue #25827: Add support for building with ICC to ``configure``, including
a new ``--with-icc`` flag.
@echo off\r
if not defined HOST_PYTHON (\r
- if %1 EQU Debug (\r
+ if "%1" EQU "Debug" (\r
shift\r
set HOST_PYTHON=python_d.exe\r
- if not exist python35_d.dll exit 1\r
+ if not exist python36_d.dll exit 1\r
) ELSE (\r
set HOST_PYTHON=python.exe\r
- if not exist python35.dll exit 1\r
+ if not exist python36.dll exit 1\r
)\r
)\r
- %HOST_PYTHON% prepare_ssl.py %1\r
+ %HOST_PYTHON% "%~dp0prepare_ssl.py" %1\r