What is CFLAGS set to and what options are passed to meson (qemu no longer uses ./configure) when you are building qemu?
-Werror
passed to gcc in the output you posted converts all warnings including the redundant declarations to to errors.
Weird, I just tested again:
gcc 14.2.1+r753+g1cd744a6828f-1
...
gcc/c/c-decl.cc line 2671 (of the current HEAD 8c420f2297626313cb45b8087630c27cfb8fe8f1 of the master branch) indicates redundant-decls
is still a ...
Custom CFLAGS including -Werror=redundant-decls
? If redundant-decls was made into an error then I would expect the error message to be error: redun...
Hey, thanks for the report....
Hm the Arch Linux package for qemu
builds without problem
After more digging it appears this may not be the issue with fuse3 package. It looks like the package is not broken but the dependency on it is. Th...
It is not intended to be a solution but rather a demonstration of what fixes the broken functionality.
The expected symlink is whatever soname is defined, that is now libfuse3.so.4. The symlink isn't missing, it shouldn't exist, and making it is a HO...