mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix Windows release build issues (GH-14091)
* Increase timeout for PGO builds in Windows release * Fix test step failures * Disable MinGW step properly * Fix embeddable distro name
This commit is contained in:
parent
bd5798f6d4
commit
749e73065d
5 changed files with 16 additions and 8 deletions
|
@ -8,7 +8,7 @@
|
|||
</PropertyGroup>
|
||||
<Import Project="..\msi.props" />
|
||||
<PropertyGroup>
|
||||
<DefineConstants Condition="$(BuildForRelease)">
|
||||
<DefineConstants Condition="$(BuildForRelease) and $(SuppressMinGWLib) == ''">
|
||||
$(DefineConstants);
|
||||
IncludeMinGWLib=1;
|
||||
</DefineConstants>
|
||||
|
@ -35,7 +35,7 @@
|
|||
Inputs="$(BuildPath)$(PyDllName).dll"
|
||||
Outputs="$(BuildPath)lib$(PyDllName).a"
|
||||
AfterTargets="PrepareForBuild"
|
||||
Condition="$(BuildForRelease)">
|
||||
Condition="$(BuildForRelease) and $(SuppressMinGWLib) == ''">
|
||||
<!-- Build libpython##.a as part of this project. This requires gendef and dlltool on the path. -->
|
||||
<PropertyGroup>
|
||||
<_DllToolOpts>-m i386 --as-flags=--32</_DllToolOpts>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue