summary refs log tree commit diff stats
path: root/results/classifier/105/instruction/1860056
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/105/instruction/1860056')
-rw-r--r--results/classifier/105/instruction/186005654
1 files changed, 54 insertions, 0 deletions
diff --git a/results/classifier/105/instruction/1860056 b/results/classifier/105/instruction/1860056
new file mode 100644
index 000000000..c7ec19ef0
--- /dev/null
+++ b/results/classifier/105/instruction/1860056
@@ -0,0 +1,54 @@
+instruction: 0.739
+device: 0.656
+graphic: 0.588
+mistranslation: 0.485
+semantic: 0.481
+other: 0.348
+boot: 0.268
+socket: 0.166
+vnc: 0.155
+assembly: 0.127
+network: 0.092
+KVM: 0.024
+
+mips binaries segfault
+
+Hello World appears to segfault with qemu mips, on a Debian 10.0.0 Buster amd64 host.
+
+Example:
+
+
+$ cat mips/test/hello.cpp 
+#include <iostream>
+using std::cout;
+
+int main() {
+    cout << "Hello World!\n";
+    return 0;
+}
+
+$ mips-linux-gnu-g++ -o hello hello.cpp && ./hello
+qemu: uncaught target signal 11 (Segmentation fault) - core dumped
+
+Note that 64-bit MIPS and little endian 32-bit MIPS qemu work fine. The problem is limited to big endian 32-bit MIPS.
+
+Could you attach the version of g++ and qemu? In other words, can you capture the output of:
+
+mips-linux-gnu-g++ --version
+
+and
+
+qemu-mips --version
+
+?
+
+Does the problem happen if you compile with "-static" option?
+
+Yours,
+Aleksandar
+
+
+Does the problem exist using c hello world and gcc?
+
+[Expired for QEMU because there has been no activity for 60 days.]
+