From 520073832dd5cd742b36f0c40b77b670387b8912 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 18 Sep 2021 09:01:36 -0500 Subject: [PATCH] fix: use gcc 11 on windows --- src/default_versions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/default_versions.ts b/src/default_versions.ts index 82af8f69..7fad6d07 100644 --- a/src/default_versions.ts +++ b/src/default_versions.ts @@ -7,7 +7,7 @@ const DefaultVersions: Record = { 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 */