From 99af9739b21fbc02f3b5a8a9fe7790c2be80d8b2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 25 Feb 2024 19:46:18 +0530 Subject: [PATCH] ... --- glfw/glfw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/glfw.py b/glfw/glfw.py index 61e85f3b5..336fb2a40 100755 --- a/glfw/glfw.py +++ b/glfw/glfw.py @@ -90,7 +90,7 @@ class Env: @property def is_gcc(self) -> bool: - return 'gcc' in self.cc_version_string.split(maxsplit=1)[0] + return 'gcc' in self.cc_version_string.split(maxsplit=1)[0].lower() def copy(self) -> 'Env': ans = Env(self.cc, list(self.cppflags), list(self.cflags), list(self.ldflags), dict(self.library_paths), list(self.ldpaths), self.ccver)