File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 28
28
- windows-2022
29
29
- windows-2019
30
30
toolchain :
31
+ # {compiler: gcc, version: 13}
31
32
- {compiler: gcc, version: 12}
32
33
- {compiler: gcc, version: 11}
33
34
- {compiler: gcc, version: 10}
Original file line number Diff line number Diff line change 59
59
- *intel* (for `ifx`)
60
60
- *intel-classic* (for `ifort`)
61
61
- *version*: Version of the compiler toolchain, available options are
62
- - *5–12 * for *gcc*
62
+ - *5–13 * for *gcc*
63
63
- *2021.1–2023.1* for *intel*
64
64
- *2021.1–2021.9* for *intel-classic*
65
65
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ install_gcc_brew()
23
23
ln -fs /usr/local/bin/g++-${version} /usr/local/bin/g++
24
24
25
25
# link lib dir for previous GCC versions to avoid missing .dylib issues
26
- for (( i= 12 ; i> 4 ; i-- ))
26
+ for (( i= 13 ; i> 4 ; i-- ))
27
27
do
28
28
gcc_lib_path=" /usr/local/opt/gcc/lib/gcc/$i "
29
29
if [ -d $gcc_lib_path ]; then
@@ -58,7 +58,10 @@ install_gcc_apt()
58
58
59
59
install_gcc_choco ()
60
60
{
61
- case $version in
61
+ case $version ina
62
+ 13)
63
+ choco install mingw --version 13.1.0 --force
64
+ ;;
62
65
12)
63
66
choco install mingw --version 12.2.0 --force
64
67
;;
@@ -75,7 +78,7 @@ install_gcc_choco()
75
78
choco install mingw --version 8.5.0 --force
76
79
;;
77
80
* )
78
- echo " Unsupported version: $version (choose 8-12 )"
81
+ echo " Unsupported version: $version (choose 8-13 )"
79
82
exit 1
80
83
;;
81
84
esac
@@ -96,6 +99,10 @@ install_gcc_winlibs()
96
99
{
97
100
repo=" https://github.com/brechtsanders/winlibs_mingw/releases/download"
98
101
case $version in
102
+ 13)
103
+ tag=" 13.0.1-snapshot20230402-11.0.0-ucrt-r1"
104
+ zip=" winlibs-x86_64-mcf-seh-gcc-13.0.1-snapshot20230402-mingw-w64ucrt-11.0.0-r1.zip"
105
+ ;;
99
106
12)
100
107
tag=" 12.2.0-14.0.6-10.0.0-ucrt-r2"
101
108
zip=" winlibs-x86_64-posix-seh-gcc-12.2.0-mingw-w64ucrt-10.0.0-r2.zip"
You can’t perform that action at this time.
0 commit comments