While compiling for Fedora 35 stock machine, I kept having failures due to code in the fuzz tests, I found that adding:
#include <stdexcept> #include <limits>
to the top of ./src/test/fuzz/FuzzedDataProvider.h fixed the issue.
While compiling for Fedora 35 stock machine, I kept having failures due to code in the fuzz tests, I found that adding:
#include <stdexcept> #include <limits>
to the top of ./src/test/fuzz/FuzzedDataProvider.h fixed the issue.
@Cinemacloud Thanks for reporting. Could you share the error message you get when compiling?
While compiling for Fedora 35 stock machine, I kept having failures due to code in the fuzz tests...
Fedora 35 release is about a half year from now.
It seems premature to bother about compiling issues.
Maybe close it for now?
If it's a legitimate problem uncovered here (lacking an #include) I tend toward fixing it instead. But we need more information.
Fixed in https://reviews.llvm.org/D98057