summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/1904
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/1904
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloadqemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/1904')
-rw-r--r--gitlab/issues_text/target_missing/host_missing/accel_missing/190416
1 files changed, 0 insertions, 16 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/1904 b/gitlab/issues_text/target_missing/host_missing/accel_missing/1904
deleted file mode 100644
index 4b9c20e24..000000000
--- a/gitlab/issues_text/target_missing/host_missing/accel_missing/1904
+++ /dev/null
@@ -1,16 +0,0 @@
-Windows LTO build fails
-Description of problem:
-LTO likes to delete `win32_close_exception_handler` which causes an error when linking
-```
-[2736/5786] Linking target qemu-system-avr.exe
-FAILED: qemu-system-avr.exe
-"cc" "-m64" "-mcx16" @qemu-system-avr.exe.rsp
-`win32_close_exception_handler' referenced in section `.xdata' of C:\msys64\tmp\cceRwR4N.ltrans59.ltrans.o: defined in discarded section `.text' of libqemuutil.a.p/util_oslib-win32.c.obj (symbol from plugin)
-collect2.exe: error: ld returned 1 exit status
-```
-Steps to reproduce:
-1. `./configure --enable-lto`
-2. `make`
-Additional information:
-Looks like the offending commit is d89f30b4df13dfe389a4d6cf8a30b2f87c4c166e "win32: wrap socket close() with an exception handler".
-Undoing the commit or marking the exception handler as `__attribute__ ((noinline, used))` both appear to fix the issue.