From c4e37617655487f7f074160461bfed74a070440e Mon Sep 17 00:00:00 2001 From: Ajmal Shajahan <23806715+AjmalShajahan@users.noreply.github.com> Date: Fri, 22 Aug 2025 01:12:50 +0530 Subject: [PATCH] fix(makefile): handle MSYS_NT as a valid Windows environment --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 98cba272..ebfe5768 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ else ifeq ($(UNAME), Darwin) else ifeq ($(UNAME), Windows_NT) OS := windows EXT := dll +else ifneq ($(findstring MSYS_NT,$(UNAME)),) + OS := windows + EXT := dll else $(error Unsupported operating system: $(UNAME)) endif