All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
To: mttcg@listserver.greensocs.com
Cc: kvm@vger.kernel.org, qemu-devel@nongnu.org, drjones@redhat.com,
	alex.bennee@linaro.org, fred.konrad@greensocs.com,
	mark.burton@greensocs.com, a.rigo@virtualopensystems.com,
	claudio.fontana@huawei.com, Jani.Kokkonen@huawei.com,
	Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
Subject: [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule
Date: Wed,  2 Sep 2015 11:25:26 +0200	[thread overview]
Message-ID: <1441185926-61587-3-git-send-email-a.spyridakis@virtualopensystems.com> (raw)
In-Reply-To: <1441185926-61587-1-git-send-email-a.spyridakis@virtualopensystems.com>

Properly clean any generated object and binary files after a 'make clean',
this fixes an issue when trying to reconfigure between arm and arm64.

Signed-off-by: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
---
 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


WARNING: multiple messages have this Message-ID (diff)
From: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
To: mttcg@listserver.greensocs.com
Cc: drjones@redhat.com, kvm@vger.kernel.org,
	claudio.fontana@huawei.com, mark.burton@greensocs.com,
	qemu-devel@nongnu.org, a.rigo@virtualopensystems.com,
	Alexander Spyridakis <a.spyridakis@virtualopensystems.com>,
	Jani.Kokkonen@huawei.com, alex.bennee@linaro.org,
	fred.konrad@greensocs.com
Subject: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule
Date: Wed,  2 Sep 2015 11:25:26 +0200	[thread overview]
Message-ID: <1441185926-61587-3-git-send-email-a.spyridakis@virtualopensystems.com> (raw)
In-Reply-To: <1441185926-61587-1-git-send-email-a.spyridakis@virtualopensystems.com>

Properly clean any generated object and binary files after a 'make clean',
this fixes an issue when trying to reconfigure between arm and arm64.

Signed-off-by: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
---
 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

  parent reply	other threads:[~2015-09-02  9:25 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-02  9:25 [kvm-unit-tests PATCH 0/2] arm/arm64: Add self-modifying code test case Alexander Spyridakis
2015-09-02  9:25 ` [Qemu-devel] " Alexander Spyridakis
2015-09-02  9:25 ` [kvm-unit-tests PATCH 1/2] arm/arm64: Add self-modifying code test Alexander Spyridakis
2015-09-02  9:25   ` [Qemu-devel] " Alexander Spyridakis
2015-09-02  9:25 ` Alexander Spyridakis [this message]
2015-09-02  9:25   ` [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule Alexander Spyridakis
2015-09-04 10:48   ` Andrew Jones
2015-09-04 13:48     ` Alexander Spyridakis
2015-09-04 13:48       ` Alexander Spyridakis
2015-09-04 14:05       ` Andrew Jones
2015-09-04 14:18         ` Peter Maydell
2015-09-04 14:18           ` Peter Maydell
2015-09-04 14:53         ` Alexander Spyridakis
2015-09-04 14:53           ` Alexander Spyridakis
2015-09-07 13:35         ` Alexander Spyridakis
2015-09-07 13:35           ` Alexander Spyridakis
2015-09-07 14:37           ` Andrew Jones
2015-09-07 14:37             ` [Qemu-devel] " Andrew Jones
2015-09-07 14:59             ` Alexander Spyridakis
2015-09-07 14:59               ` Alexander Spyridakis
2015-09-04 13:53     ` Alexander Spyridakis
2015-09-04 13:53       ` Alexander Spyridakis
2015-09-04 14:08       ` Andrew Jones
2015-09-04 14:08         ` Andrew Jones

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1441185926-61587-3-git-send-email-a.spyridakis@virtualopensystems.com \
    --to=a.spyridakis@virtualopensystems.com \
    --cc=Jani.Kokkonen@huawei.com \
    --cc=a.rigo@virtualopensystems.com \
    --cc=alex.bennee@linaro.org \
    --cc=claudio.fontana@huawei.com \
    --cc=drjones@redhat.com \
    --cc=fred.konrad@greensocs.com \
    --cc=kvm@vger.kernel.org \
    --cc=mark.burton@greensocs.com \
    --cc=mttcg@listserver.greensocs.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.