From 8f8c6a7bf3854934aac032763edf677d8db01c6f Mon Sep 17 00:00:00 2001 From: laokz Date: Sat, 22 Nov 2025 10:05:40 +0800 Subject: [PATCH] riscv64: Disable static-pie as toolchain not supported --- qemu.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/qemu.spec b/qemu.spec index 7f8b3524..028a2558 100644 --- a/qemu.spec +++ b/qemu.spec @@ -3,7 +3,7 @@ Name: qemu Version: 8.2.0 -Release: 52 +Release: 53 Epoch: 11 Summary: QEMU is a generic and open source machine emulator and virtualizer License: GPLv2 and BSD and MIT and CC-BY-SA-4.0 @@ -1479,7 +1479,9 @@ cd static_builddir --prefix=%{_prefix} \ --enable-attr \ --enable-linux-user \ +%ifnarch riscv64 --enable-pie \ +%endif --enable-tcg \ --disable-install-blobs \ --target-list="$static_targets" \ @@ -1868,6 +1870,9 @@ getent passwd qemu >/dev/null || \ /bin/systemctl try-restart systemd-binfmt.service &>/dev/null || : %changelog +* Mon Nov 24 2025 laokz - 11:8.2.0-53 +- riscv64: Disable static-pie as toolchain not supported + * Thu Nov 13 2025 Pengrui Zhang - 11:8.2.0-52 - trace: Add trace to measure hot migrate downtime - backends: Add support of one guest numa node alloc memory from multi host nodes -- Gitee