summary refs log tree commit diff stats
path: root/results/classifier/gemma3:27b/runtime/1807
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-06 16:43:19 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-06 16:43:19 +0000
commit238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd (patch)
treecd8a1b75ba7b3543eb7fe6857f408e7be4d9fd0b /results/classifier/gemma3:27b/runtime/1807
parent96049c939b1916d80532630d63c14e04d5244f1d (diff)
downloadqemu-analysis-238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd.tar.gz
qemu-analysis-238ec2b7cc1557d6f34c33cc482e4d0cd3e266dd.zip
add results
Diffstat (limited to 'results/classifier/gemma3:27b/runtime/1807')
-rw-r--r--results/classifier/gemma3:27b/runtime/180727
1 files changed, 27 insertions, 0 deletions
diff --git a/results/classifier/gemma3:27b/runtime/1807 b/results/classifier/gemma3:27b/runtime/1807
new file mode 100644
index 000000000..aee76b466
--- /dev/null
+++ b/results/classifier/gemma3:27b/runtime/1807
@@ -0,0 +1,27 @@
+
+
+
+sparc64 always segfaults doesn't work on Ubuntu 23.04
+Description of problem:
+It segfaults when it tries to use 'printf' or 'puts' to print to the screen.
+Steps to reproduce:
+Do the following at the command line
+
+```
+$ sparc64-linux-gnu-g++ --version
+sparc64-linux-gnu-g++ (Ubuntu 12.2.0-14ubuntu2) 12.2.0
+Copyright (C) 2022 Free Software Foundation, Inc.
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+$ echo -e "#include <stdio.h> \n int main(void) { puts(\"Hello World\"); }" > test.cpp
+$ sparc64-linux-gnu-g++ -o test test.cpp -static
+$ qemu-sparc64-static --version
+qemu-sparc64 version 7.2.0 (Debian 1:7.2+dfsg-5ubuntu2)
+Copyright (c) 2003-2022 Fabrice Bellard and the QEMU Project developers
+$ qemu-sparc64-static ./test
+Segmentation fault (core dumped)
+$ qemu-sparc-static ./test
+qemu-sparc-static: ./test: Invalid ELF image for this architecture
+$ qemu-sparc32plus-static ./test
+qemu-sparc32plus-static: ./test: Invalid ELF image for this architecture
+```