-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libfuzzer/FuzzerInterceptors.cpp:62:36: error: 'size_t' has not been declared #87
Comments
After updating libfuzzer directory to the llvm branch release/13.x it can be compiled. The only change is
|
kolbma
added a commit
to kolbma/Rocket
that referenced
this issue
Jan 20, 2022
Using source checkout in core/lib/libfuzzer-sys with updated llvm libfuzzer directory to todays release/13.x branch which fixes a missing `#include <cstddef>`. See rust-fuzz/libfuzzer#87
Happy to merge a PR that updates the vendored libfuzzer! |
kolbma
added a commit
to kolbma/libfuzzer
that referenced
this issue
Jan 22, 2022
Add missing `cstddef` header for `size_t`. Fixes rust-fuzz#87 libfuzzer code is then up-to-date with llvm branch release/13.x up to 2022/01/20. Upstream fix is with llvm/llvm-project@60e32a1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can't build it on target x86_64-unknown-linux-musl ...
Seems to be missed to
#include <cstddef>
somewhere to be compatible?The text was updated successfully, but these errors were encountered: