You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CMakeLists.txt file contains a trap for non-arm builds at L191:
if(GNULINUX_PLATFORM AND (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^arm"))
To retain the trap and allow the aarch64 build to complete, this line can be replaced with:
if(GNULINUX_PLATFORM AND (NOT ((CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") OR (CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch"))))
The text was updated successfully, but these errors were encountered:
The CMakeLists.txt file contains a trap for non-arm builds at L191:
if(GNULINUX_PLATFORM AND (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^arm"))
To retain the trap and allow the aarch64 build to complete, this line can be replaced with:
if(GNULINUX_PLATFORM AND (NOT ((CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") OR (CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch"))))
The text was updated successfully, but these errors were encountered: