summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/device/1785
blob: 35549af80bf1c5e83a621df947c52d83ee88b7e3 (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
37
38
device: 0.868
instruction: 0.851
graphic: 0.803
network: 0.748
mistranslation: 0.745
KVM: 0.732
socket: 0.687
boot: 0.687
other: 0.608
vnc: 0.602
semantic: 0.557
assembly: 0.522

8.1.0rc0: Build failure when building static binaries, auto config incorrectly mark bzip2 as supported on my machine
Description of problem:
8.1.0rc0 fails to build when I build static binaries.

```
Jul 24 20:28:22 clang-13: warning: argument unused during compilation: '-pie' [-Wunused-command-line-argument]
Jul 24 20:28:22 ld.lld: error: attempted static link of dynamic object /usr/bin/../lib/libbz2.so
Jul 24 20:28:22 clang-13: error: linker command failed with exit code 1 (use -v to see invocation)
```

It seems that `./configure` mistaken my dynamic library of bzip2 as able to compile under static compilation.
Steps to reproduce:
1. `./configure --target-list=x86_64-softmmu --static` with bzip2 only dynamicly installed and static library not installed
2. see output

You can see
```
    snappy support                               : NO
    bzip2 support                                : YES
    lzfse support                                : NO
```

which is wrong. Additionally, the compilation fails because the system only have bzip2 dynamicly but not staticly.
Additional information: