From 03493b9a3e49281371ba7248501c6e66e5182d89 Mon Sep 17 00:00:00 2001 From: Nikita Ermakov Date: Thu, 19 Mar 2020 19:03:01 +0300 Subject: [PATCH] Add riscv64 to host_cpu configure.ac Add riscv64 to the host_cpu list of 64-bit CPUs for linux host_os. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index aa027c5f71..060d2819dc 100644 --- a/configure.ac +++ b/configure.ac @@ -123,7 +123,7 @@ if test -z "$LIBPOSTFIX"; then case "${host_os}" in *linux* ) case "${host_cpu}" in - aarch64 | powerpc64 | powerpc64le | s390x | x86_64 | sparc64 ) + aarch64 | powerpc64 | powerpc64le | s390x | x86_64 | sparc64 | riscv64 ) LIBPOSTFIX="64" INTGOSIZE=64 ;; -- GitLab