From: Cyril Hrubis <chrubis@suse.cz>
To: Petr Vorel <petr.vorel@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Buildroot Mailing List <buildroot@buildroot.org>,
Fabrice Fontaine <fontaine.fabrice@gmail.com>,
"Yann E. MORIN" <yann.morin.1998@free.fr>,
ltp@lists.linux.it
Subject: Re: [LTP] [PATCH 1/2] kvm: Fix compilation on x86
Date: Wed, 8 Jun 2022 16:39:45 +0200 [thread overview]
Message-ID: <YqC0sSfMjolMEeKx@yuki> (raw)
In-Reply-To: <20220606184320.8210-2-petr.vorel@gmail.com>
Hi!
> Buildroot supports i386 pentium toolchains (br-i386-pentium-mmx-musl,
> br-i386-pentium4-full) which fail to compile because as is run without --32.
So we have a 32bit compiler but 64bit linker?
I guess that passing -m32 to 32bit compiler is harmless, so this can go
in.
Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
> Suggested-by: Martin Doucha <mdoucha@suse.cz>
> Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
> ---
> testcases/kernel/kvm/Makefile | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/testcases/kernel/kvm/Makefile b/testcases/kernel/kvm/Makefile
> index adab56952..8d5193d8e 100644
> --- a/testcases/kernel/kvm/Makefile
> +++ b/testcases/kernel/kvm/Makefile
> @@ -17,11 +17,14 @@ FILTER_OUT_MAKE_TARGETS := lib_guest lib_host lib_x86
> ifeq ($(HOST_CPU),x86_64)
> ifneq (,$(findstring m32,$(CFLAGS)))
> HOST_CPU = x86
> - GUEST_CFLAGS += -m32
> - ASFLAGS += --32
> endif
> endif
>
> +ifeq ($(HOST_CPU),x86)
> + GUEST_CFLAGS += -m32
> + ASFLAGS += --32
> +endif
> +
> # Some distros enable -pie by default. That breaks KVM payload linking.
> ifdef LTP_CFLAGS_NOPIE
> GUEST_CFLAGS += -fno-pie
> --
> 2.36.1
>
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2022-06-08 14:37 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-06 18:43 [Buildroot] [PATCH 0/2] LTP compilation fixes for buildroot toolchains Petr Vorel
2022-06-06 18:43 ` [LTP] " Petr Vorel
2022-06-06 18:43 ` [Buildroot] [PATCH 1/2] kvm: Fix compilation on x86 Petr Vorel
2022-06-06 18:43 ` [LTP] " Petr Vorel
2022-06-08 14:39 ` Cyril Hrubis [this message]
2022-06-06 18:43 ` [Buildroot] [PATCH 2/2] kvm: Fix undefined reference to __stack_chk_fail() Petr Vorel
2022-06-06 18:43 ` [LTP] " Petr Vorel
2022-06-08 14:36 ` Cyril Hrubis
2022-06-09 8:26 ` Martin Doucha
2022-06-09 12:26 ` [Buildroot] " Thomas Petazzoni via buildroot
2022-06-09 12:26 ` [LTP] " Thomas Petazzoni via ltp
2022-06-10 7:56 ` Joerg Vehlow
2022-06-13 21:31 ` [Buildroot] " Petr Vorel
2022-06-13 21:31 ` Petr Vorel
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=YqC0sSfMjolMEeKx@yuki \
--to=chrubis@suse.cz \
--cc=buildroot@buildroot.org \
--cc=fontaine.fabrice@gmail.com \
--cc=ltp@lists.linux.it \
--cc=petr.vorel@gmail.com \
--cc=thomas.petazzoni@bootlin.com \
--cc=yann.morin.1998@free.fr \
/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.