diff options
author | Steve Dower <steve.dower@python.org> | 2019-06-21 21:28:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-21 21:28:46 (GMT) |
commit | f5690925df897cf45818bf944b28d13f37b9f8ca (patch) | |
tree | 5c287e9145716d550b7a3305773829d69309579d /Tools/msi/dev/dev.wixproj | |
parent | e56a123fd0acaa295a28b98d2e46d956b97d1263 (diff) | |
download | cpython-f5690925df897cf45818bf944b28d13f37b9f8ca.zip cpython-f5690925df897cf45818bf944b28d13f37b9f8ca.tar.gz cpython-f5690925df897cf45818bf944b28d13f37b9f8ca.tar.bz2 |
bpo-37351: Removes libpython38.a from standard Windows distribution (#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> |