git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
# simple script to filter warnings in TPC code
[u/mrichter/AliRoot.git]
/
TPC
/
scripts
/
cppViolator.sh
1
#!/bin/bash
2
#
3
# simple script to filter warnings in TPC code
4
# root warning are filtered out
5
#
6
7
8
make clean-TPC
9
make -i -j 5 &> compile.txt
10
11
cat compile.txt | grep -v $ROOTSYS | grep warning
12
13
14
15