aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-07-11 17:56:09 +0100
committerRichard Henderson <richard.henderson@linaro.org>2023-07-11 17:56:09 +0100
commit887cba855bb6ff4775256f7968409281350b568c (patch)
treedb23054fffa14958cf8dc96f7a8b2c8587bfecdd /configure
parente3e477c3bca0beaf9326e0213d52ad4be804fb73 (diff)
downloadqemu-887cba855bb6ff4775256f7968409281350b568c.zip
qemu-887cba855bb6ff4775256f7968409281350b568c.tar.gz
qemu-887cba855bb6ff4775256f7968409281350b568c.tar.bz2
configure: Fix cross-building for RISCV host (v5)
Update $linux_arch to keep using the shared linux-headers/asm-riscv/ include path. Fixes: e3e477c3bca0 ("configure: Fix cross-building for RISCV host") Reported-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> [rth: Missed v5, so now applying the diff between v4 and v5.] Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index dffd44c..26ec5e4 100755
--- a/configure
+++ b/configure
@@ -1726,6 +1726,9 @@ if test "$linux" = "yes" ; then
mips64)
linux_arch=mips
;;
+ riscv32|riscv64)
+ linux_arch=riscv
+ ;;
*)
# For most CPUs the kernel architecture name and QEMU CPU name match.
linux_arch="$cpu"