summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/108/other/2088
blob: 2eeee9a9aa73ac1c7674cbd27f7618e58879cc9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
network: 0.903
graphic: 0.891
permissions: 0.887
files: 0.874
device: 0.858
PID: 0.817
socket: 0.787
vnc: 0.714
semantic: 0.695
debug: 0.673
boot: 0.601
performance: 0.598
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: