Add armv8l support (Closes: #18898) (#18901) [backport]

This commit is contained in:
Federico Ceratto
2021-09-27 16:35:14 +01:00
committed by GitHub
parent 57eb763c65
commit 5325a366e7
2 changed files with 4 additions and 1 deletions

View File

@@ -213,7 +213,7 @@ case $ucpu in
mycpu="alpha" ;;
*aarch64*|*arm64* )
mycpu="arm64" ;;
*arm*|*armv6l*|*armv71* )
*arm*|*armv6l*|*armv7l*|*armv8l* )
mycpu="arm" ;;
*riscv64|riscv* )
mycpu="riscv64" ;;

View File

@@ -157,6 +157,9 @@ endif
ifeq ($(ucpu),armv7hl)
mycpu = arm
endif
ifeq ($(ucpu),armv8l)
mycpu = arm
endif
ifeq ($(ucpu),aarch64)
mycpu = arm64
endif