@@ -18,10 +18,10 @@ function Exec {
1818 }
1919}
2020
21- $MINGW_64_URL = ' https://github.com/brechtsanders/winlibs_mingw /releases/download/12.2.0-14.0.6-10.0.0-msvcrt-r2/winlibs- x86_64-posix-seh-gcc- 12.2.0-llvm-14.0.6-mingw-w64msvcrt-10.0.0-r2 .7z'
22- $MINGW_32_URL = ' https://github.com/brechtsanders/winlibs_mingw /releases/download/12.2.0-14.0.6-10.0.0-msvcrt-r2/winlibs- i686-posix-dwarf-gcc- 12.2.0-llvm-14.0.6-mingw-w64msvcrt-10.0.0-r2 .7z'
23- $MINGW_64_SUM = ' c0dd9f2113a151dd2fe3dce8ceb30df90120fab4537349d7c0ee22e9ff4fe3bc '
24- $MINGW_32_SUM = ' 80ab3fb4b65870509f968e07e44f90d216eaf130fe9eb320b7a98285a84a0d2e '
21+ $MINGW_64_URL = ' https://github.com/niXman/mingw-builds-binaries /releases/download/12.2.0-rt_v10-rev2/ x86_64-12.2.0-release-win32-seh-msvcrt-rt_v10-rev2 .7z'
22+ $MINGW_32_URL = ' https://github.com/niXman/mingw-builds-binaries /releases/download/12.2.0-rt_v10-rev2/ i686-12.2.0-release-win32-dwarf-msvcrt-rt_v10-rev2 .7z'
23+ $MINGW_64_SUM = ' dbe4de36401906f296c2752afd512891a227a787f3b9cf10115b409feaef39aa '
24+ $MINGW_32_SUM = ' d76daf7a176f6e65ff75adc26efbadba89787bb14265696b94dce302cf1f8115 '
2525
2626$DBGHELP_64_URL = ' https://gist.githubusercontent.com/jrfonseca/55a9a0e0e228ad841032df1624da5e27/raw/8b5f0a1578be701128f09f886f9636389ae60268/dbghelp-win64.7z'
2727$DBGHELP_32_URL = ' https://gist.githubusercontent.com/jrfonseca/55a9a0e0e228ad841032df1624da5e27/raw/8b5f0a1578be701128f09f886f9636389ae60268/dbghelp-win32.7z'
@@ -131,9 +131,6 @@ Exec { cmake --build $buildDir --use-stderr --target test }
131131# MinGW GCC
132132Exec { cmake " -S" tests\apps " -B" " $buildRoot \apps\$target " - G $generator " -DCMAKE_BUILD_TYPE=Debug" }
133133Exec { cmake -- build " $buildRoot \apps\$target " }
134- # MinGW Clang
135- Exec { cmake " -S" tests\apps " -B" " $buildRoot \apps\$target -clang" - G $generator " -DCMAKE_BUILD_TYPE=Debug" " -DCMAKE_C_COMPILER=clang" " -DCMAKE_CXX_COMPILER=clang++" " -DCMAKE_C_FLAGS_DEBUG=-g" " -DCMAKE_CXX_FLAGS_DEBUG=-g" }
136- Exec { cmake -- build " $buildRoot \apps\$target -clang" }
137134# MSVC 32-bits
138135Exec { cmake " -S" tests\apps " -B" " $buildRoot \apps\msvc32" - G " Visual Studio 17 2022" - A Win32 }
139136Exec { cmake -- build " $buildRoot \apps\msvc32" -- config Debug " --" / verbosity:minimal / maxcpucount }
@@ -142,9 +139,9 @@ if ($target -eq "mingw64") {
142139 Exec { cmake - Stests\apps " -B$buildRoot \apps\msvc64" - G " Visual Studio 17 2022" - A x64 }
143140 Exec { cmake -- build " $buildRoot \apps\msvc64" -- config Debug " --" / verbosity:minimal / maxcpucount }
144141
145- Exec { python ci\spawndesk.py python tests\apps\test.py $buildDir \bin\catchsegv.exe " $buildRoot \apps\$target " " $buildRoot \apps\$target -clang " " $buildRoot \apps\ msvc32\Debug" " $buildRoot \apps\msvc64\Debug" }
142+ Exec { python ci\spawndesk.py python tests\apps\test.py $buildDir \bin\catchsegv.exe " $buildRoot \apps\$target " " $buildRoot \apps\msvc32\Debug" " $buildRoot \apps\msvc64\Debug" }
146143} else {
147- Exec { python ci\spawndesk.py python tests\apps\test.py $buildDir \bin\catchsegv.exe " $buildRoot \apps\$target " " $buildRoot \apps\$target -clang " " $buildRoot \apps\ msvc32\Debug" }
144+ Exec { python ci\spawndesk.py python tests\apps\test.py $buildDir \bin\catchsegv.exe " $buildRoot \apps\$target " " $buildRoot \apps\msvc32\Debug" }
148145}
149146
150147#
0 commit comments