From 1a10170485cf4ef8505e6dd078d6b40339c5e7a0 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Tue, 17 Mar 2026 23:18:25 -0700 Subject: [PATCH] fix clang build error in mule_main --- src/mule/mule_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mule/mule_main.cpp b/src/mule/mule_main.cpp index fc7c1d09..17fb4d12 100644 --- a/src/mule/mule_main.cpp +++ b/src/mule/mule_main.cpp @@ -6,7 +6,7 @@ ** stepping, breakpoints, evaluation, cross-module calls. */ -#if COMPILER_MSVC && _DEBUG +#if _WIN32 && _DEBUG #pragma comment(linker, "/nodefaultlib:libcmt") #pragma comment(lib, "libcmtd") #endif