Skip to content

Commit

Permalink
Land #989 cmake: disable ASM for Windows ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
busterb committed Feb 12, 2024
2 parents 1f0e198 + bebf637 commit 4e25dc4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,9 @@ endif()

if(CMAKE_SYSTEM_PROCESSOR MATCHES "(aarch64|arm64|ARM64)")
set(HOST_AARCH64 true)
if(WIN32)
set(ENABLE_ASM false)
endif()
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "arm")
set(HOST_ARM true)
elseif(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND CMAKE_SYSTEM_PROCESSOR MATCHES "i386")
Expand Down

0 comments on commit 4e25dc4

Please sign in to comment.