some helper

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20716 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2007-10-03 21:19:57 +00:00
parent 721e47e32f
commit e858466d36
2 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,40 @@
for i in \
boost/bind.hpp \
boost/array.hpp \
boost/assert.hpp \
boost/crc.hpp \
boost/cregex.hpp \
boost/current_function.hpp \
boost/function.hpp \
boost/iterator/indirect_iterator.hpp \
boost/scoped_array.hpp \
boost/scoped_ptr.hpp \
boost/shared_ptr.hpp \
boost/signal.hpp \
boost/signals/connection.hpp \
boost/signals/trackable.hpp \
boost/tokenizer.hpp \
boost/tuple/tuple.hpp \
boost/utility.hpp \
boost/version.hpp \
boost/signals/trackable.hpp \
string \
vector \
map \
list \
deque \
QObject \
QString \
QList \
QVector \
QMap \
QHash \
QRegExp
do
echo "#include <$i>" > 1.cpp
inc='-I/suse/usr/src/lyx/trunk/boost -I/usr/include/qt4/QtCore -I/usr/include/qt4'
l=`g++ $inc -DQT_NO_STL -E 1.cpp | wc -l`
printf "%-40s: %d\n" $i $l
done

View File

@ -16,7 +16,7 @@ s=0
for i in `find ../.. -name *.cpp` ; do
#echo $i
#echo "g++ $inc -DQT_NO_STL -E $i"
g++ $inc -DQT_NO_STL -E $i > tmp/`basename $i`
#g++ $inc -DQT_NO_STL -E $i > tmp/`basename $i`
l=`g++ $inc -DQT_NO_STL -E $i | wc -l`
s=$[s + l]
printf "%10d %-40s\n" $l $i