Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 8623e68ea856830e084839e1d726c1f5be727203 authored by Ɓukasz Langa on 10 February 2020, 19:08:24 UTC
Python 3.8.2rc1
Tip revision: 8623e68
mingw-lib.yml
parameters:
  DllToolOpt: -m i386:x86-64
  #DllToolOpt: -m i386 --as-flags=--32

steps:
- powershell: |
    git clone https://github.com/python/cpython-bin-deps --branch binutils --single-branch --depth 1 --progress -v "binutils"
    gci "bin\$(Arch)\python*.dll" | %{
      & "binutils\gendef.exe" $_ | Out-File -Encoding ascii tmp.def
      & "binutils\dlltool.exe" --dllname $($_.BaseName).dll --def tmp.def --output-lib "$($_.Directory)\lib$($_.BaseName).a" ${{ parameters.DllToolOpt }}
    }
  displayName: 'Generate MinGW import library'
  workingDirectory: $(Build.BinariesDirectory)
back to top