summaryrefslogtreecommitdiffstats
path: root/Tools/msi/dev/dev.wixproj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-06-21 21:28:46 (GMT)
committerGitHub <noreply@github.com>2019-06-21 21:28:46 (GMT)
commitf5690925df897cf45818bf944b28d13f37b9f8ca (patch)
tree5c287e9145716d550b7a3305773829d69309579d /Tools/msi/dev/dev.wixproj
parente56a123fd0acaa295a28b98d2e46d956b97d1263 (diff)
downloadcpython-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.wixproj21
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" &gt; "$(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>