From 4d06f8f83ea64700ff3022be3a8617be849afbc0 Mon Sep 17 00:00:00 2001 From: Alexandre Demers Date: Mon, 7 Jul 2025 23:38:09 -0400 Subject: [PATCH] Remove -mnocygwin The flag is useless as it is, since it should be -mno-cygwin. That being said, fixing the flag prevent regsvr32 from registring the lib properly. Since no one seems to have realized the flag was not working, it should be safe to remove it. This fixes https://github.com/wineasio/wineasio/issues/115 Signed-off-by: Alexandre Demers --- Makefile.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile.mk b/Makefile.mk index 5b07491..fa48c20 100644 --- a/Makefile.mk +++ b/Makefile.mk @@ -56,7 +56,6 @@ wineasio_dll_C_SRCS = asio.c \ regsvr.c wineasio_dll_LDFLAGS = -shared \ -m$(M) \ - -mnocygwin \ wineasio.dll.spec \ -L/usr/lib$(M)/wine \ -L/usr/lib/wine \