From f9e821aabb42d12345c336de30363fa37bec1663 Mon Sep 17 00:00:00 2001 From: laokz Date: Fri, 10 Mar 2023 19:52:16 +0800 Subject: [PATCH] add riscv64 support Signed-off-by: Junqiang Wang --- libvirt.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/libvirt.spec b/libvirt.spec index 8c4f4f8..1a46c93 100644 --- a/libvirt.spec +++ b/libvirt.spec @@ -13,7 +13,7 @@ %define with_qemu_tcg %{with_qemu} -%define qemu_kvm_arches %{ix86} x86_64 aarch64 +%define qemu_kvm_arches %{ix86} x86_64 aarch64 riscv64 %ifarch %{qemu_kvm_arches} %define with_qemu_kvm %{with_qemu} @@ -44,7 +44,7 @@ %endif %define with_storage_zfs 0%{!?_without_storage_zfs:1} -%ifarch aarch64 x86_64 +%ifarch aarch64 x86_64 riscv64 %define with_storage_zfs 0 %endif @@ -101,7 +101,7 @@ Summary: Library providing a simple virtualization API Name: libvirt Version: 6.2.0 -Release: 51 +Release: 52 License: LGPLv2+ URL: https://libvirt.org/ @@ -2080,7 +2080,7 @@ exit 0 %{_bindir}/virt-pki-validate %{_bindir}/virt-host-validate -%ifnarch aarch64 x86_64 +%ifnarch aarch64 x86_64 riscv64 %{_datadir}/systemtap/tapset/libvirt_probes*.stp %{_datadir}/systemtap/tapset/libvirt_functions.stp %if %{with_qemu} @@ -2202,6 +2202,9 @@ exit 0 %changelog +* Mon Mar 13 2023 laokz - 6.2.0-52 +- add riscv64 support + * Tue Feb 14 2023 mayunlong - 6.2.0-51 - live_migrate: virsh migrate command supports the zstd compression algorithm - glibcompat: Provide implementation for G_GNUC_NO_INLINE -- Gitee