Checkout the source code and its dependencies from GitHub:
git clone --recursive https://github.com/fuzzuf/fuzzuf-cc
We provide a container image to set up a development environment for fuzzuf-cc quickly. Install Docker and run:
./shell.sh
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build -j$(nproc)
- Ubuntu 22.04
- Ubuntu 20.04
The following dependencies must be met to build fuzzuf-cc.
- gcc 7 or higher
- 8 or higher is recommended
- 10 or higher is required for static analysis
- CMake 3.10 or higher
- Boost C++ library 1.53.0 or higher
- CPython 3.7 or higher
- LLVM 15 or higher
To build fuzzuf-cc on Ubuntu 22.04 and 20.04, install the dependencies as follows:
sudo apt update
sudo apt install -y build-essential cmake git libboost-all-dev python3 software-properties-common wget
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" # On Ubuntu 20.04
sudo apt install -y llvm-15 clang-15 lld-15
See LLVM Debian/Ubuntu nightly packages to find the appropriate apt repository for your environment.
Next, clone the repository and build fuzzuf-cc:
git clone --recursive https://github.com/fuzzuf/fuzzuf-cc
cd fuzzuf-cc
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build -j$(nproc)
Build the test
target to run unit tests:
cmake --build build --target test