Build Corvus from source
masterTo build Corvus from the latest source, you must first clone the repository and initialize submodules. You will need autoconf installed to handle dependencies.
- Clone the repository.
- Initialize submodules.
- Install dependencies using
make deps. - Build the binary using
make.
The resulting binary is located at ./src/corvus.
git clone https://github.com/eleme/corvus.git
cd corvus
git submodule update --init
make deps # need autoconf
make