mirror of
https://github.com/Z3Prover/z3
synced 2025-04-04 16:44:07 +00:00
set ARM64 if detected under OSX
This commit is contained in:
parent
a863a91b13
commit
1953165422
|
@ -198,7 +198,9 @@ elseif (CMAKE_SYSTEM_NAME MATCHES "GNU")
|
|||
message(STATUS "Platform: GNU/Hurd")
|
||||
list(APPEND Z3_COMPONENT_CXX_DEFINES "-D_HURD_")
|
||||
elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
||||
# Does macOS really not need any special flags?
|
||||
if (TARGET_ARCHITECTURE STREQUAL "arm64")
|
||||
set(CMAKE_OSX_ARCHITECTURES "arm64")
|
||||
endif()
|
||||
message(STATUS "Platform: Darwin")
|
||||
elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
||||
message(STATUS "Platform: FreeBSD")
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
#error CMAKE_TARGET_ARCH_i686
|
||||
#elif defined(__x86_64__) || defined(_M_X64)
|
||||
#error CMAKE_TARGET_ARCH_x86_64
|
||||
#elif defined(__ARM_ARCH_ISA_A64)
|
||||
#error CMAKE_TARGET_ARCH_arm64
|
||||
#elif defined(__ARM_ARCH)
|
||||
#error CMAKE_TARGET_ARCH_arm
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue