File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,5 @@ The following versions of MinGW are actually used to create binaries (they all u
26
26
* MinGW-W64 GCC-7.3.0 using SJLJ exceptions for 32 bits architecture downloadable from [ here] ( https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/7.3.0/threads-win32/sjlj/i686-7.3.0-release-win32-sjlj-rt_v5-rev0.7z " MinGW-W64 GCC-7.3.0 i686 Win32 SJLJ ") and SEH exceptions for 64 bits architecture downloadable from [ here] ( https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/7.3.0/threads-win32/seh/x86_64-7.3.0-release-win32-seh-rt_v5-rev0.7z " MinGW-W64 GCC-7.3.0 x86_64 Win32 SEH ")
27
27
* MinGW-W64 GCC-8.1.0 using SJLJ exceptions for 32 bits architecture downloadable from [ here] ( https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/8.1.0/threads-win32/sjlj/i686-8.1.0-release-win32-sjlj-rt_v6-rev0.7z " MinGW-W64 GCC-8.1.0 i686 Win32 SJLJ ") and SEH exceptions for 64 bits architecture downloadable from [ here] ( https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/8.1.0/threads-win32/seh/x86_64-8.1.0-release-win32-seh-rt_v6-rev0.7z " MinGW-W64 GCC-8.1.0 x86_64 Win32 SEH ")
28
28
* MinGW-TDM GCC-10.3.0 downloadable from [ here] (https://jmeubank.github.io/tdm-gcc/articles/2021-05/10.3.0-release"TDM GCC-10.3.0")
29
- * MSYS2 MinGW GCC-12.1.0 which is the last version installable using [ MSYS2] ( https://www.msys2.org " www.msys2.org ") package manager
29
+ * MSYS2 MinGW GCC-13.2.0 which is the last version installable using [ MSYS2] ( https://www.msys2.org " www.msys2.org ") package manager
30
+ * MSYS2 MinGW GCC-12.2.0 which is the previous version of the MSYS2 installation
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ rem Initialize the main log file with the current date and time
11
11
echo %date% %time% : wxWidgets-%wxMAJOR_VERSION% .%wxMINOR_VERSION% .%wxRELEASE_NUMBER% build started > %MAINLOGFILE%
12
12
13
13
rem Loop through all versions of the compiler
14
- for %%c in ( 730 810 1030 1220 ) do (
14
+ for %%c in ( 730 810 1030 1220 1320 ) do (
15
15
rem For each version, create a 32 and a 64 bits build
16
16
for %%a in ( 32 64 ) do (
17
17
call officialbuild.bat %%c %%a
Original file line number Diff line number Diff line change @@ -76,10 +76,10 @@ rem ============================================ Create archives
76
76
title Archives for %COMPNAME%
77
77
cd %WXDIR% \
78
78
if exist %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _Dev.7z del %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _Dev.7z
79
- %ZIP% a -t7z -mx4 -bb %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _Dev.7z -r %COMPNAME% _dll
79
+ %ZIP% a -t7z -mx4 -bb %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _Dev.7z -r %COMPNAME% _dll docs\licence.txt
80
80
set ERRLVL = %ERRORLEVEL%
81
81
if exist %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _ReleaseDLL.7z del %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _ReleaseDLL.7z
82
- %ZIP% a -t7z -mx4 -bb %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _ReleaseDLL.7z -r -ir!lib\%COMPNAME%_dll\*.dll -xr! *ud_*.dll
82
+ %ZIP% a -t7z -mx4 -bb %OUTPUTDIR% \%ARCHNAME%%COMPNAME% _ReleaseDLL.7z -r -ir!lib\%COMPNAME%_dll\*.dll -xr! *ud_*.dll docs\licence.txt
83
83
set ERRLVL = %ERRLVL% / %ERRORLEVEL%
84
84
echo %date% %time% : %COMPNAME%%XTRASPCS% archives : ERRORLEVEL=%ERRLVL% >> %MAINLOGFILE%
85
85
Original file line number Diff line number Diff line change @@ -14,10 +14,13 @@ if "%2" == "" goto :NOPARAMS
14
14
15
15
rem Define compiler's bin directory
16
16
if " %1 " == " 1220" (
17
- set COMPBINDIR = G:\msys64\mingw%2 \bin
17
+ set COMPBINDIR = G:\msys64-gcc1220 \mingw%2 \bin
18
18
) else (
19
19
set COMPBINDIR = G:\MinGW%1 -%2 \bin
20
20
)
21
+ if " %1 " == " 1320" (
22
+ set COMPBINDIR = G:\msys64\mingw%2 \bin
23
+ )
21
24
rem Define compiler's version string such as 810, 730_x64, 920TDM
22
25
rem Also define extra spaces for "aligned" logs lines
23
26
set COMPVERS = %1
You can’t perform that action at this time.
0 commit comments