summaryrefslogtreecommitdiff
path: root/solenv/bin
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-05 16:23:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-05 16:52:32 +0000
commit621ddc9c951262cdbdda1fe5479b48bc40e6e3b4 (patch)
tree4aaa4f90eacd65e3a3c1e003d9ac218d24d097bb /solenv/bin
parentc1d69c0e9e3361f9dd340ac133407e1dbb1d08ca (diff)
get make findunusedcode working again
Change-Id: I8fed32b8eb1e986321dde0542c15b7b8cf91b123
Diffstat (limited to 'solenv/bin')
-rw-r--r--solenv/bin/callcatchEnv.Set.sh15
-rw-r--r--solenv/bin/callcatcher.Makefile34
2 files changed, 0 insertions, 49 deletions
diff --git a/solenv/bin/callcatchEnv.Set.sh b/solenv/bin/callcatchEnv.Set.sh
deleted file mode 100644
index 38c24c1f9696..000000000000
--- a/solenv/bin/callcatchEnv.Set.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-CC="callcatcher ${CC:-gcc}"
-CXX="callcatcher ${CXX:-g++}"
-AR="callarchive ${AR:-ar}"
-#old-school ones, can go post-gbuildification is complete
-LINK="callcatcher $CXX"
-LIBMGR="callarchive ${LIBMGR:-ar}"
-export CC CXX AR LINK LIBMGR
-export dbglevel=2
diff --git a/solenv/bin/callcatcher.Makefile b/solenv/bin/callcatcher.Makefile
deleted file mode 100644
index 10b09e3a9d2b..000000000000
--- a/solenv/bin/callcatcher.Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-.PHONY: all
-
-include callcatcher/config_host.mk
-
-export CC:=callcatcher $(CC)
-export CXX:=callcatcher $(CXX)
-ifeq ($(AR),)
-export AR:=callarchive ar
-else
-export AR:=callarchive $(AR)
-endif
-export dbglevel:=2
-
-include $(SRCDIR)/solenv/gbuild/gbuild.mk
-
-findunusedcode:
- $(GNUMAKE) BUILDDIR=callcatcher -j $(PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.gbuild
- $(GNUMAKE) BUILDDIR=callcatcher -j $(PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.gbuild subsequentcheck
- callanalyse \
- $(INSTDIR)/program/* \
- $(WORKDIR)/LinkTarget/*/* $(WORKDIR)/LinkTarget/*/*/* \
- $(WORKDIR)/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit.so* \
- > unusedcode.all
-
-# vim: set noet sw=4 ts=4: