Update makefile and buildsh templates for riscv64 (#9351)

This commit is contained in:
Federico Ceratto
2018-10-13 16:18:06 +01:00
committed by Andreas Rumpf
parent e4c76f8a2a
commit e435dbd35e
2 changed files with 5 additions and 0 deletions

View File

@@ -168,6 +168,8 @@ case $ucpu in
mycpu="arm" ;;
*aarch64* )
mycpu="arm64" ;;
*riscv64* )
mycpu="riscv64" ;;
*)
echo 2>&1 "Error: unknown processor: $ucpu"
exit 1

View File

@@ -144,6 +144,9 @@ endif
ifeq ($(ucpu),aarch64)
mycpu = arm64
endif
ifeq ($(ucpu),riscv64)
mycpu = riscv64
endif
ifndef mycpu
$(error unknown processor: $(ucpu))
endif