We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4d5bd6 commit e030be3Copy full SHA for e030be3
1 file changed
cmake/system_check.cmake
@@ -34,7 +34,6 @@ if(MINGW)
34
endif()
35
36
# Pretty thorough determination of arch. Add more if needed
37
-message (STATUS "CMake system processor variable is ${CMAKE_SYSTEM_PROCESSOR}")
38
if(CMAKE_CL_64 OR MINGW64)
39
if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*|arm64.*|ARM64.*)")
40
set(ARM64 1)
@@ -104,6 +103,8 @@ elseif(X86)
104
103
set(ARCH "x86")
105
elseif(POWER)
106
set(ARCH "power")
+elseif(ZARCH)
107
+ set(ARCH "zarch")
108
elseif(MIPS32)
109
set(ARCH "mips")
110
elseif(MIPS64)
0 commit comments