All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
To: Andrew Jones <drjones@redhat.com>
Cc: "Alexander Spyridakis" <a.spyridakis@virtualopensystems.com>,
	mttcg@greensocs.com, "KVM General" <kvm@vger.kernel.org>,
	"Claudio Fontana" <claudio.fontana@huawei.com>,
	"Mark Burton" <mark.burton@greensocs.com>,
	"QEMU Developers" <qemu-devel@nongnu.org>,
	"Alvise Rigo" <a.rigo@virtualopensystems.com>,
	"Jani Kokkonen" <Jani.Kokkonen@huawei.com>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	"KONRAD Frédéric" <fred.konrad@greensocs.com>
Subject: Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule
Date: Mon, 7 Sep 2015 15:35:19 +0200	[thread overview]
Message-ID: <CAJRNFKLecMMBi9ApQsY1DUyKRcejfUW4bu5Nz8JbQZ3pcmoHrg@mail.gmail.com> (raw)
In-Reply-To: <20150904140528.GH3096@hawk.localdomain>

On 4 September 2015 at 16:05, Andrew Jones <drjones@redhat.com> wrote:
> This doesn't reproduce for me. I did the following, and it worked
> fine.
>
> make distclean
> ./configure --arch=arm --cross-prefix=arm-linux-gnu-
> make
> ./configure --arch=arm64 --cross-prefix=aarch64-linux-gnu-
> make clean && make

Ok I think I found the issue:

config-arm-common.mak:
>arm_clean: libfdt_clean asm_offsets_clean
>    $(RM) $(TEST_DIR)/*.{o,flat,elf} $(libeabi) $(eabiobjs) \
>          $(TEST_DIR)/.*.d lib/arm/.*.d

config-x86-common.mak:
>arch_clean:
>    $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \
>    $(TEST_DIR)/.*.d lib/x86/.*.d

I think the arm case tries to be too clever and on many systems it
fails (tested on debian:jessie,sid and ubuntu:14.04,15.04). Basically
the expression for the arm case fails to resolve, while using the
simpler x86 way works as expected.

So is the following change acceptable in config-arm-common.mak?
> arm_clean: libfdt_clean asm_offsets_clean
>-       $(RM) $(TEST_DIR)/*.{o,flat,elf} $(libeabi) $(eabiobjs) \
>-             $(TEST_DIR)/.*.d lib/arm/.*.d
>+       $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \
>+               $(libeabi) $(eabiobjs) $(TEST_DIR)/.*.d lib/arm/.*.d

Thanks.

WARNING: multiple messages have this Message-ID (diff)
From: Alexander Spyridakis <a.spyridakis@virtualopensystems.com>
To: Andrew Jones <drjones@redhat.com>
Cc: mttcg@greensocs.com, "Mark Burton" <mark.burton@greensocs.com>,
	"KVM General" <kvm@vger.kernel.org>,
	"Alexander Spyridakis" <a.spyridakis@virtualopensystems.com>,
	"Claudio Fontana" <claudio.fontana@huawei.com>,
	"QEMU Developers" <qemu-devel@nongnu.org>,
	"Alvise Rigo" <a.rigo@virtualopensystems.com>,
	"Jani Kokkonen" <Jani.Kokkonen@huawei.com>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	"KONRAD Frédéric" <fred.konrad@greensocs.com>
Subject: Re: [Qemu-devel] [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule
Date: Mon, 7 Sep 2015 15:35:19 +0200	[thread overview]
Message-ID: <CAJRNFKLecMMBi9ApQsY1DUyKRcejfUW4bu5Nz8JbQZ3pcmoHrg@mail.gmail.com> (raw)
In-Reply-To: <20150904140528.GH3096@hawk.localdomain>

On 4 September 2015 at 16:05, Andrew Jones <drjones@redhat.com> wrote:
> This doesn't reproduce for me. I did the following, and it worked
> fine.
>
> make distclean
> ./configure --arch=arm --cross-prefix=arm-linux-gnu-
> make
> ./configure --arch=arm64 --cross-prefix=aarch64-linux-gnu-
> make clean && make

Ok I think I found the issue:

config-arm-common.mak:
>arm_clean: libfdt_clean asm_offsets_clean
>    $(RM) $(TEST_DIR)/*.{o,flat,elf} $(libeabi) $(eabiobjs) \
>          $(TEST_DIR)/.*.d lib/arm/.*.d

config-x86-common.mak:
>arch_clean:
>    $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \
>    $(TEST_DIR)/.*.d lib/x86/.*.d

I think the arm case tries to be too clever and on many systems it
fails (tested on debian:jessie,sid and ubuntu:14.04,15.04). Basically
the expression for the arm case fails to resolve, while using the
simpler x86 way works as expected.

So is the following change acceptable in config-arm-common.mak?
> arm_clean: libfdt_clean asm_offsets_clean
>-       $(RM) $(TEST_DIR)/*.{o,flat,elf} $(libeabi) $(eabiobjs) \
>-             $(TEST_DIR)/.*.d lib/arm/.*.d
>+       $(RM) $(TEST_DIR)/*.o $(TEST_DIR)/*.flat $(TEST_DIR)/*.elf \
>+               $(libeabi) $(eabiobjs) $(TEST_DIR)/.*.d lib/arm/.*.d

Thanks.

  parent reply	other threads:[~2015-09-07 13:35 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 ` [kvm-unit-tests PATCH 2/2] arm/arm64 config: Fix arch_clean rule Alexander Spyridakis
2015-09-02  9:25   ` [Qemu-devel] " 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 [this message]
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=CAJRNFKLecMMBi9ApQsY1DUyKRcejfUW4bu5Nz8JbQZ3pcmoHrg@mail.gmail.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@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.