From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXoY1-0008Bx-C7 for qemu-devel@nongnu.org; Fri, 04 Sep 2015 06:48:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXoXx-0007EN-1U for qemu-devel@nongnu.org; Fri, 04 Sep 2015 06:48:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXoXw-0007Dq-TA for qemu-devel@nongnu.org; Fri, 04 Sep 2015 06:48:40 -0400 Date: Fri, 4 Sep 2015 12:48:35 +0200 From: Andrew Jones Message-ID: <20150904104835.GC3096@hawk.localdomain> References: <1441185926-61587-1-git-send-email-a.spyridakis@virtualopensystems.com> <1441185926-61587-3-git-send-email-a.spyridakis@virtualopensystems.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1441185926-61587-3-git-send-email-a.spyridakis@virtualopensystems.com> Subject: Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Spyridakis Cc: mttcg@greensocs.com, kvm@vger.kernel.org, claudio.fontana@huawei.com, mark.burton@greensocs.com, qemu-devel@nongnu.org, a.rigo@virtualopensystems.com, Jani.Kokkonen@huawei.com, alex.bennee@linaro.org, fred.konrad@greensocs.com On Wed, Sep 02, 2015 at 11:25:26AM +0200, Alexander Spyridakis wrote: > Properly clean any generated object and binary files after a 'make clean', > this fixes an issue when trying to reconfigure between arm and arm64. Are you also running configure (with the opposite arch selected) after 'make clean'? If not, then that could be the source of your problems. Anyway, please describe the issues you're seeing because I don't see what this patch is doing that isn't already being done. The lines this patch adds are already there. See the arm_clean target in config/config-arm-common.mak. Thanks, drew > > Signed-off-by: Alexander Spyridakis > --- > config/config-arm.mak | 2 ++ > config/config-arm64.mak | 3 ++- > 2 files changed, 4 insertions(+), 1 deletion(-) > > diff --git a/config/config-arm.mak b/config/config-arm.mak > index ae6c2e7..68fab62 100644 > --- a/config/config-arm.mak > +++ b/config/config-arm.mak > @@ -21,3 +21,5 @@ tests = > include config/config-arm-common.mak > > arch_clean: arm_clean > + $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \ > + $(TEST_DIR)/.*.d lib/arm/.*.d > diff --git a/config/config-arm64.mak b/config/config-arm64.mak > index d61b703..a0bc1b3 100644 > --- a/config/config-arm64.mak > +++ b/config/config-arm64.mak > @@ -17,4 +17,5 @@ tests = > include config/config-arm-common.mak > > arch_clean: arm_clean > - $(RM) lib/arm64/.*.d > + $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \ > + $(TEST_DIR)/.*.d lib/arm64/.*.d > -- > 2.1.4 > >