summaryrefslogtreecommitdiff
path: root/bin/findunusedcode
blob: df865bc8666858543e1c474c2d2ae8acb1986ac1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/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
cd ${SRCDIR}/callcatcher

echo "--without-doxygen
--enable-verbose
--enable-gio
--enable-packagekit
--disable-gnome-vfs
--enable-extension-integration
--enable-graphite
--enable-evolution2
--enable-lockdown
--enable-online-update
--enable-dbgutil
--enable-werror
--enable-gtk3
--enable-kde4
--enable-dbus
--enable-gstreamer
--disable-gstreamer-0-10" \
  > autogen.input

export CC="callcatcher ${CC:-gcc}"
export CXX="callcatcher ${CXX:-g++}"
export AR="callarchive ${AR:-ar}"

/bin/env -i CC="$CC" CXX="$CXX" AR="$AR" /bin/bash -l ../autogen.sh

export dbglevel=2

make clean && make

callanalyse \
  instdir/program/* \
  instdir/sdk/bin/* \
  workdir/LinkTarget/*/* workdir/LinkTarget/*/*/* \
  workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit.so* \
  > unusedcode.all

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 ^glTF:: \
		  | 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 \
		  | grep -v ^OAuth2Handler \
		  | grep -v ^COLLADABU:: \
		  | grep -v ^COLLADAFW:: \
		  | grep -v ^COLLADASaxFWL14:: \
		  | grep -v ^COLLADASaxFWL15:: \
		  | grep -v ^COLLADASaxFWL:: \
		  | grep -v ^o3dgc:: \
		  | grep -v ^MathML:: \
		  | grep -v ^GeneratedSaxParser:: \
		  | grep -v ^GLTF:: \
		  | grep -v ^FPSCounter:: \
		  | grep -v ^CPhysicalCamera:: \
		  | grep -v ^RenderScene:: \
		  | grep -v ^ShaderProgram:: \
		  | grep -v ^Texture:: \
		  > ../unusedcode.easy