Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions CMake/Mathematica/FindMathematica.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,8 @@ macro (_systemNameToSystemID _systemName _systemProcessor _outSystemIDs)
set (${_outSystemIDs} "Linux-IA64")
elseif ("${_systemProcessor}" MATCHES "^arm")
set (${_outSystemIDs} "Linux-ARM")
elseif ("${_systemProcessor}" MATCHES "^aarch64")
set (${_outSystemIDs} "Linux-ARM64")
endif()
elseif ("${_systemName}" STREQUAL "SunOS")
if ("${_systemProcessor}" MATCHES "^sparc")
Expand Down Expand Up @@ -526,22 +528,22 @@ macro (_get_supported_systemIDs _version _outSystemIDs)
if (NOT "${_version}" VERSION_LESS "12.3")
set (${_outSystemIDs}
"Windows-x86-64"
"Linux-x86-64" "Linux-ARM"
"Linux-x86-64" "Linux-ARM" "Linux-ARM64"
"MacOSX-x86-64" "MacOSX-ARM64")
elseif (NOT "${_version}" VERSION_LESS "12.1")
set (${_outSystemIDs}
"Windows-x86-64"
"Linux-x86-64" "Linux-ARM"
"Linux-x86-64" "Linux-ARM" "Linux-ARM64"
"MacOSX-x86-64")
elseif (NOT "${_version}" VERSION_LESS "11.3")
set (${_outSystemIDs}
"Windows" "Windows-x86-64"
"Linux-x86-64" "Linux-ARM"
"Linux-x86-64" "Linux-ARM" "Linux-ARM64"
"MacOSX-x86-64")
elseif (NOT "${_version}" VERSION_LESS "10.0")
set (${_outSystemIDs}
"Windows" "Windows-x86-64"
"Linux" "Linux-x86-64" "Linux-ARM"
"Linux" "Linux-x86-64" "Linux-ARM" "Linux-ARM64"
"MacOSX-x86-64")
elseif (NOT "${_version}" VERSION_LESS "9.0")
set (${_outSystemIDs}
Expand Down