build-style/cmake.sh: add riscv64 arch

This commit is contained in:
John 2023-01-16 22:15:02 +01:00 committed by John Zimmermann
parent 5de81f076a
commit 8714c52bf7
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ _EOF
ppc64*) _CMAKE_SYSTEM_PROCESSOR=ppc64 ;;
ppcle*) _CMAKE_SYSTEM_PROCESSOR=ppcle ;;
ppc*) _CMAKE_SYSTEM_PROCESSOR=ppc ;;
riscv64*) _CMAKE_SYSTEM_PROCESSOR=riscv64 ;;
*) _CMAKE_SYSTEM_PROCESSOR=generic ;;
esac
cat > cross_${XBPS_CROSS_TRIPLET}.cmake <<_EOF