Open kolbma opened 2 years ago
After updating libfuzzer directory to the llvm branch release/13.x it can be compiled.
The only change is
$ diff -uw libfuzzer.20220120095225 libfuzzer
--- libfuzzer.20220120095225/FuzzerInterceptors.cpp
+++ libfuzzer/FuzzerInterceptors.cpp
@@ -25,6 +25,7 @@
}
#include <cassert>
+#include <cstddef> // for size_t
#include <cstdint>
#include <dlfcn.h> // for dlsym()
Happy to merge a PR that updates the vendored libfuzzer!
Can't build it on target x86_64-unknown-linux-musl ... Seems to be missed to
#include <cstddef>
somewhere to be compatible?