You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Fix crn_core.h: Ensure WIN32 is defined when _WIN32 is defined (MSVC defines _WIN32, not WIN32)
22
+
context.ReplaceTextInFiles(
23
+
"crunch/crnlib/crn_core.h",
24
+
"// File: crn_core.h\r\n// See Copyright Notice and license at the end of inc/crnlib.h\r\n#pragma once",
25
+
"// File: crn_core.h\r\n// See Copyright Notice and license at the end of inc/crnlib.h\r\n#pragma once\r\n\r\n// Ensure WIN32 is defined when _WIN32 is defined (MSVC defines _WIN32, not WIN32)\r\n#if defined(_WIN32) && !defined(WIN32)\r\n#define WIN32 1\r\n#endif");
26
+
27
+
// Fix crn_core.h: Add ARM64 platform detection before x64 check
0 commit comments