generate poetry with gcc diagnostics
gado (gcc awesome diagnostics orchestrator) is a wrapper of gcc that outputs its errors and warnings in a more poetic format.
You can see some examples on its website and read an article about how it works.
It currently takes rhymes from a database of all Shakespeare's works.
After installing, you will be able to call gado
and gado++
. You can use them just like gcc/g++
!
Type gado --help
for more info.
Examples:
gado source.c -o executable
gado++ source.cpp -o executable
π‘ Tip: There are C/C++
source files in the examples
folder. Why don't you try to compile them (with gado errors.c
or gado++ errors.cpp
)?
You need gcc>=9, python3 and pip in order to install gado.
As gado is written in python, installation by pip is recommended.
sudo pip install gado
You can manually install gado by cloning this repository and running the install script.
git clone https://github.com/diksown/gado
cd gado
sudo python setup.py install
gado is open source. You are more than welcome to help on it!