diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-30 12:24:58 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-30 12:27:06 +0000 |
| commit | 33606b41d35115f887ea688b1a16f2ff85bf2fe4 (patch) | |
| tree | 406b2c7b19a087ba437c68f3dbf0b589fa1d6150 /results/scraper/launchpad-without-comments/1916655 | |
| parent | adedf8771bc4de3113041ca21bd4d0d1c0014b6a (diff) | |
| download | qemu-analysis-33606b41d35115f887ea688b1a16f2ff85bf2fe4.tar.gz qemu-analysis-33606b41d35115f887ea688b1a16f2ff85bf2fe4.zip | |
add launchpad bug reports without comments
Diffstat (limited to 'results/scraper/launchpad-without-comments/1916655')
| -rw-r--r-- | results/scraper/launchpad-without-comments/1916655 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1916655 b/results/scraper/launchpad-without-comments/1916655 new file mode 100644 index 000000000..eb398111c --- /dev/null +++ b/results/scraper/launchpad-without-comments/1916655 @@ -0,0 +1,31 @@ +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 \ No newline at end of file |