Cat says error messages for various compilers
-
install golang
Ubuntu:
$ sudo apt-get install golang
-
clone
$ git clone https://github.com/TakedaHiromasa/crror-cat-edition.git ~/crror-cat-edition
-
setup $PATH and $GOPATH
$ export PATH=$PATH:~/saycat $ export GOPATH=~/golang
you may need to have the above 2 export lines in your .bashrc
feed output from a compiler/linker commands
$ saycat make
or
$ saycat gcc test.c
feed compiler/linker output from a log file
$ make 2>&1 > build.log
$ saycat build.log