diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-21 00:56:40 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-21 00:57:38 +0100 |
commit | a2541298c6fe7a23202808a8da39063fef005f07 (patch) | |
tree | b9fc83871239093656d2a68b346e9579342b0683 /bin | |
parent | d47e869c7ef1d573d1f7107150ca448f86d292b3 (diff) |
move finunusedcode to a script
Change-Id: Ie4a422a818095313d9765a4c5e9ebba838eed76d
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/findunusedcode | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/bin/findunusedcode b/bin/findunusedcode new file mode 100755 index 000000000000..62e56c87d9b8 --- /dev/null +++ b/bin/findunusedcode @@ -0,0 +1,49 @@ +#!/bin/bash +set -e +SRCDIR=$1 +GNUMAKE=$2 + +cd ${SRCDIR} +which callcatcher > /dev/null 2>&1 || \ + (echo "callcatcher not installed" && false) +mkdir -p ${SRCDIR}/callcatcher/config_host +cp config_host/* callcatcher/config_host +cp config_host.mk* callcatcher +cat config_host.mk | sed -e s,"export OOO_JUNIT_JAR=.*","export OOO_JUNIT_JAR=",g > ${SRCDIR}/callcatcher/config_host.mk +sed -i -e s,g++,"callcatcher g++",g ${SRCDIR}/callcatcher/config_host.mk +sed -i -e s,gcc,"callcatcher gcc",g ${SRCDIR}/callcatcher/config_host.mk +echo unexport ARCH_FLAGS >> ${SRCDIR}/callcatcher/config_host.mk +echo unexport CFLAGS >> ${SRCDIR}/callcatcher/config_host.mk +echo unexport CXXFLAGS >> ${SRCDIR}/callcatcher/config_host.mk +${GNUMAKE} -f ${SRCDIR}/solenv/bin/callcatcher.Makefile findunusedcode +grep ::.*\( unusedcode.all \ + | grep -v ^Atom \ + | grep -v ^atom:: \ + | grep -v ^boost:: \ + | grep -v ^CIcc \ + | grep -v ^CLuceneError:: \ + | grep -v ^cppu:: \ + | grep -v ^CppUnit:: \ + | grep -v ^Dde \ + | grep -v ^graphite2:: \ + | grep -v ^jvmaccess:: \ + | grep -v ^libcdr:: \ + | grep -v ^libcmis:: \ + | grep -v ^libmspub:: \ + | grep -v ^libvisio:: \ + | grep -v ^libwpg:: \ + | grep -v ^libwps_tools_win:: \ + | grep -v ^lucene:: \ + | grep -v ^Matrix3d:: \ + | grep -v ^RelatedMultipart:: \ + | grep -v ^salhelper:: \ + | grep -v ^VSDInternalStream:: \ + | grep -v ^WP1 \ + | grep -v ^WP3 \ + | grep -v ^WP42 \ + | grep -v ^WP6 \ + | grep -v ^WPG \ + | grep -v ^WPS \ + | grep -v WPX \ + | grep -v ^WSObject \ + > unusedcode.easy |