From 0460720e2e01af5290452b6bdce0eeca40740f25 Mon Sep 17 00:00:00 2001 From: Matthew Kilgore Date: Mon, 25 Apr 2022 11:04:29 -0400 Subject: [PATCH] Use new mingw executable --- .ci/bootstrap.bat | 14 +++++++++----- .ci/common-exclusion.list | 3 +-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.ci/bootstrap.bat b/.ci/bootstrap.bat index 9a4a110f6..fa8d2ca95 100644 --- a/.ci/bootstrap.bat +++ b/.ci/bootstrap.bat @@ -1,11 +1,15 @@ @ECHO OFF SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION -cd internal\c -set MINGW=mingw32 -IF "%PLATFORM%"=="x64" set MINGW=mingw64 -ren %MINGW% c_compiler -cd ../.. +mkdir internal\c\c_compiler + +cd internal\c\mingw +set MINGW=mingw32.exe +IF "%PLATFORM%"=="x64" set MINGW=mingw64.exe + +%MINGW% -y -o"..\c_compiler\" + +cd ..\..\.. echo Building library 'LibQB' cd internal\c\libqb\os\win diff --git a/.ci/common-exclusion.list b/.ci/common-exclusion.list index 6e9890917..83029735f 100644 --- a/.ci/common-exclusion.list +++ b/.ci/common-exclusion.list @@ -6,5 +6,4 @@ appveyor.yml .gitignore .github setup_win.bat -internal/c/mingw32 -internal/c/mingw64 +internal\c\mingw