On 11/05/2021 15.26, Daniel P. Berrangé wrote:
Several distros have been dropped since the last time we bumped the minimum required CLang version.
[...]
-# if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4) -# error You need at least Clang v3.4 to compile QEMU +# if __clang_major__ < 7 || (__clang_major__ == 7 && __clang_minor__ < 0)
__clang_minor__ < 0 is very unlikely ... I think you could drop the part after the "||".
Anyway: Reviewed-by: Thomas Huth <th...@redhat.com>