summary refs log tree commit diff stats
path: root/results/classifier/105/instruction/2088
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/105/instruction/2088')
-rw-r--r--results/classifier/105/instruction/208834
1 files changed, 34 insertions, 0 deletions
diff --git a/results/classifier/105/instruction/2088 b/results/classifier/105/instruction/2088
new file mode 100644
index 000000000..2b030b19a
--- /dev/null
+++ b/results/classifier/105/instruction/2088
@@ -0,0 +1,34 @@
+instruction: 0.943
+network: 0.903
+graphic: 0.891
+device: 0.858
+socket: 0.787
+mistranslation: 0.784
+vnc: 0.714
+semantic: 0.695
+boot: 0.601
+assembly: 0.530
+other: 0.492
+KVM: 0.146
+
+Building qemu fails on Solaris 11.4
+Description of problem:
+Building qemu-system-hppa on Solaris 11.4 (details above) fails because in qga/commands-posix.c
+
+(1) Solaris does not have net/ethernet.h
+```
+ #if defined(__NetBSD__) || defined(__OpenBSD__)
+ #include <net/if_arp.h>
+ #include <netinet/if_ether.h>
+ #else
+ #include <net/ethernet.h>
+ #endif
+```
+Solaris *does* have net/if_arp.h and netinet/if_ether.h
+
+(2) Solaris does not define ETHER_ADDR_LEN, instead it defines ETHERADDRL
+Steps to reproduce:
+1. '../configure' '--disable-docs' '--disable-rdma' '--target-list=hppa-softmmu'
+2. gmake
+Additional information:
+