diff options
author | Steve Dower <steve.dower@python.org> | 2019-06-22 21:08:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-22 21:08:02 (GMT) |
commit | fa23bd286fb7719bd7601da0b713457589f5536f (patch) | |
tree | 15e5eca38c3d7001fc32519945edf1cf4ef76524 /Tools/msi/dev/dev.wixproj | |
parent | 9b32b44d3ec298e02c33fea1aa842f52c9650243 (diff) | |
download | cpython-fa23bd286fb7719bd7601da0b713457589f5536f.zip cpython-fa23bd286fb7719bd7601da0b713457589f5536f.tar.gz cpython-fa23bd286fb7719bd7601da0b713457589f5536f.tar.bz2 |
bpo-37351: Removes libpython38.a from standard Windows distribution (GH-14276)
Diffstat (limited to 'Tools/msi/dev/dev.wixproj')
-rw-r--r-- | Tools/msi/dev/dev.wixproj | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Tools/msi/dev/dev.wixproj b/Tools/msi/dev/dev.wixproj index c6e3bcf..4052e4b 100644 --- a/Tools/msi/dev/dev.wixproj +++ b/Tools/msi/dev/dev.wixproj @@ -7,12 +7,6 @@ <OutputType>Package</OutputType> </PropertyGroup> <Import Project="..\msi.props" /> - <PropertyGroup> - <DefineConstants Condition="$(BuildForRelease) and $(SuppressMinGWLib) == ''"> - $(DefineConstants); - IncludeMinGWLib=1; - </DefineConstants> - </PropertyGroup> <ItemGroup> <Compile Include="dev.wxs" /> <Compile Include="dev_files.wxs" /> @@ -31,20 +25,5 @@ </InstallFiles> </ItemGroup> - <Target Name="BuildMinGWLib" - Inputs="$(BuildPath)$(PyDllName).dll" - Outputs="$(BuildPath)lib$(PyDllName).a" - AfterTargets="PrepareForBuild" - 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> - <_DllToolOpts Condition="$(Platform) == 'x64'">-m i386:x86-64</_DllToolOpts> - </PropertyGroup> - - <Exec Command='gendef - "$(BuildPath)$(PyDllName).dll" > "$(IntermediateOutputPath)mingwlib.def"' ContinueOnError="false" /> - <Exec Command='dlltool --dllname $(PyDllName).dll --def "$(IntermediateOutputPath)mingwlib.def" --output-lib "$(BuildPath)lib$(PyDllName).a" $(_DllToolOpts)' /> - </Target> - <Import Project="..\msi.targets" /> </Project> |