mirror of https://github.com/aminya/setup-cpp
fix: use gcc 11 on windows
This commit is contained in:
parent
3dbece7c6d
commit
520073832d
|
@ -7,7 +7,7 @@ const DefaultVersions: Record<string, string> = {
|
||||||
conan: "1.40.1",
|
conan: "1.40.1",
|
||||||
meson: "0.59.1",
|
meson: "0.59.1",
|
||||||
python: "3.x",
|
python: "3.x",
|
||||||
gcc: process.platform === "win32" ? "10.2.0" : "11",
|
gcc: process.platform === "win32" ? "11.2.0" : "11",
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get the default version if passed true or undefined, otherwise return the version itself */
|
/** Get the default version if passed true or undefined, otherwise return the version itself */
|
||||||
|
|
Loading…
Reference in New Issue