K 10 svn:author V 2 ed K 8 svn:date V 27 2010-06-15T17:08:03.974761Z K 7 svn:log V 405 Remove unneeded files from the build. I used the following command to determine which source files were unneeded: | for i in `find lib/clang -name '*.o'` | do | MATCHES="`(nm -g --defined-only $i; nm -g --defined-only \ | usr.bin/clang/clang/clang) | sed -e 's/.* //' | \ | sort | uniq -d | wc -l`" | [ $MATCHES -eq 0 ] && echo "$i: unneeded" | done This should slightly improve the build times. END