On Monday, 29 January 2007 at 14:55, Giel van Schijndel wrote:
> Hmm, maybe that's a nice idea for some spare time: writing a
> diff-utility that generates diffs on compiler warnings/errors.
> Although maybe a bit far fetched.

Tried that some time ago. Not perfect, but works.

-- 
Let the worthy citizens of Chicago get their liquor the best way
they can. I'm sick of the job.  It's a thankless one and full of grief.
                -- Al Capone
#!/bin/sh

mv make-out make-out.prev
make -j3 2>&1 | tee make-out.tmp
echo
grep warning < make-out.tmp | sort > make-out

# or diff -u

diff -n make-out.prev make-out
_______________________________________________
Warzone-dev mailing list
Warzone-dev@gna.org
https://mail.gna.org/listinfo/warzone-dev

Reply via email to