fix: use gcc 11 on windows

This commit is contained in:
Amin Yahyaabadi 2021-09-18 09:01:36 -05:00
parent 3dbece7c6d
commit 520073832d
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const DefaultVersions: Record<string, string> = {
conan: "1.40.1",
meson: "0.59.1",
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 */