-
Notifications
You must be signed in to change notification settings - Fork 81
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
Building Cryptofuzz #35
Comments
This just means you don't have the boost library installed. To install on Red Hat linux for example, you can run Once you've installed boost, you shouldn't see the missing lib error anymore |
Sorry, missed this. Yes you can install Boost using your OS' package manager or build from source by downloading a recent version from https://www.boost.org/. |
I downloaded the most recent version of Boost, and built it, but I still don't know how to fix the error of not having the boost/algorithm/hex.hpp. Can you provide more details? |
Did you also install the headers? Can you try this? tar jxf boost_1_74_0.tar.bz2
cd boost_1_74_0/
CFLAGS="" CXXFLAGS="" ./bootstrap.sh
CFLAGS="" CXXFLAGS="" ./b2 headers
cp -R boost/ /usr/include/ |
I need help with the building of Cryptofuzz -- I kept getting fatal error of not having the boost/algorithm/hex.hpp. Does anyone have a more detailed guide on building the fuzzer, newbie here
The text was updated successfully, but these errors were encountered: