Skip to content

Commit

Permalink
Windows on ARM64 install fix
Browse files Browse the repository at this point in the history
cygcheck comes from base MSYS2, not CLANGARM64, and currently works on X64 objects only

Fixes darktable-org#17562
  • Loading branch information
kmilos authored and TurboGit committed Oct 11, 2024
1 parent add2de2 commit 70b8721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if(WIN32 AND NOT BUILD_MSYS2_INSTALL)
get_filename_component(MINGW_PATH ${CMAKE_CXX_COMPILER} PATH)

find_program(cygcheck_BIN cygcheck)
if(${cygcheck_BIN} STREQUAL "cygcheck_BIN-NOTFOUND")
if(CMAKE_SYSTEM_PROCESSOR MATCHES "ARM64" OR ${cygcheck_BIN} STREQUAL "cygcheck_BIN-NOTFOUND")

# use the slower fixup_bundle

Expand Down

0 comments on commit 70b8721

Please sign in to comment.