blob: 027975db5eb6b94cb39c749e51836dfd15b0021d (
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
|
graphic: 0.868
device: 0.854
instruction: 0.797
network: 0.721
semantic: 0.643
socket: 0.615
vnc: 0.593
mistranslation: 0.593
boot: 0.490
other: 0.372
KVM: 0.288
assembly: 0.254
Build fails if build directory name includes a comma
Description of problem:
Builds fail if the build directory name contains a comma.
Steps to reproduce:
1. `mkdir build,demo && cd build,demo`
2. `../configure && make`
The linker fails because it uses a wrong build path (comma and trailing part of directory name is missing):
```
ld: can't read -exported_symbols_list file: /Users/stefan/src/gitlab/qemu-project/qemu/build
clang: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
```
|