Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 21dd01dad7b6b38d4fd40b37d65f1ac7203ec4e6 authored by Ɓukasz Langa on 04 July 2019, 10:50:19 UTC
Python 3.8.0b2
Tip revision: 21dd01d
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