Browse Source

add Windows winlibs-mingw64 build with ucrt instead of msvcrt

pull/4264/head
Martin Kroeker GitHub 2 years ago
parent
commit
5e8aafd7be
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      azure-pipelines.yml

+ 13
- 0
azure-pipelines.yml View File

@@ -83,6 +83,19 @@ jobs:
- script: |
mingw32-make CC=gcc FC=gfortran DYNAMIC_ARCH=1 DYNAMIC_LIST="SANDYBRIDGE"

- job: Windows_mingw_ucrt_gmake
pool:
vmImage: 'windows-latest'
steps:
- script: |
mkdir winlib
cd winlib
wget https://github.com/brechtsanders/winlibs_mingw/releases/download/13.2.0mcf-16.0.6-11.0.1-ucrt-r2/winlibs-x86_64-mcf-seh-gcc-13.2.0-mingw-w64ucrt-11.0.1-r2.zip
tar -xf winlibs-x86_64-mcf-seh-gcc-13.2.0-mingw-w64ucrt-11.0.1-r2.zip
set PATH=%cd%\mingw64\bin:%PATH%
cd
mingw32-make CC=gcc FC=gfortran

- job: Windows_clang_cmake
pool:
vmImage: 'windows-latest'


Loading…
Cancel
Save