From 3e4c5a6261770bced301b5e74233e7866166ea5b Mon Sep 17 00:00:00 2001 From: Christian Krinitsin Date: Sun, 1 Jun 2025 21:35:14 +0200 Subject: clean up repository --- .../target_missing/host_missing/accel_missing/1770 | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 gitlab/issues_text/target_missing/host_missing/accel_missing/1770 (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/1770') diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/1770 b/gitlab/issues_text/target_missing/host_missing/accel_missing/1770 deleted file mode 100644 index 002e39109..000000000 --- a/gitlab/issues_text/target_missing/host_missing/accel_missing/1770 +++ /dev/null @@ -1,22 +0,0 @@ -Wrong unpacked structure for epoll_event on qemu-or1k (openrisc) -Description of problem: -When using cmake automoc, the process will infinite loop waiting for epoll_events. -Steps to reproduce: -1. Try to compile cmake with qt5 support -2. The build process will freeze when "Automatic MOC" is invoked -Additional information: -The problem is that or1k has a "packed" epoll_event structure, so it should be also packed in target_epoll_event structure. -Following the (very trivial) patch: -``` ---- qemu-20230327/linux-user/syscall_defs.h.orig 2023-03-27 15:41:42.000000000 +0200 -+++ qemu-20230327/linux-user/syscall_defs.h 2023-06-30 17:29:39.034322213 +0200 -@@ -2714,7 +2709,7 @@ - #define FUTEX_CMD_MASK ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME) - - #ifdef CONFIG_EPOLL --#if defined(TARGET_X86_64) -+#if defined(TARGET_X86_64) || defined(TARGET_OPENRISC) - #define TARGET_EPOLL_PACKED QEMU_PACKED - #else - #define TARGET_EPOLL_PACKED -``` -- cgit 1.4.1