blob: 69462997ec30772f19c9afe5f259c2970b2c17cf (
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
|
Compilation fails due to zstd qcow2 compression
Compilation of QEMU fails when using recent versions of zstd.
I use the following commands to compile QEMU:
$ mkdir build
$ cd build
$ ../configure --enable-debug --target-list=x86_64-softmmu
$ make -j $(nproc)
Here is a paste from the ../configure output:
https://paste.ubuntu.com/p/dHsWzGV7TH/
And one from the make output:
https://paste.ubuntu.com/p/89qKk4NrFz/
In short the error boils down to:
../block/qcow2-threads.c: In function ‘qcow2_zstd_compress’:
../block/qcow2-threads.c:225:16: error: implicit declaration of function ‘ZSTD_compressStream2’; did you mean ‘ZSTD_compressStream’? [-Werror=implicit-function-declaration]
225 | zstd_ret = ZSTD_compressStream2(cctx, &output, &input, ZSTD_e_end);
| ^~~~~~~~~~~~~~~~~~~~
| ZSTD_compressStream
../block/qcow2-threads.c:225:16: error: nested extern declaration of ‘ZSTD_compressStream2’ [-Werror=nested-externs]
../block/qcow2-threads.c:225:60: error: ‘ZSTD_e_end’ undeclared (first use in this function)
225 | zstd_ret = ZSTD_compressStream2(cctx, &output, &input, ZSTD_e_end);
|
System info:
QEMU commit: 7ef8134565dccf9186d5eabd7dbb4ecae6dead87 (from Github)
Kernel: 5.10.15
zstd: 1.4.8
|