* [kvm-unit-tests PATCH] Makefile: Use CFLAGS in cc-option
@ 2025-03-07 8:39 Andrew Jones
2025-03-07 8:42 ` Thomas Huth
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Jones @ 2025-03-07 8:39 UTC (permalink / raw)
To: kvm, kvmarm, kvm-riscv, linuxppc-dev, linux-s390
Cc: pbonzini, thuth, alexandru.elisei, eric.auger, lvivier, frankja,
imbrenda, nrb
When cross compiling with clang we need to specify the target in
CFLAGS and cc-option will fail to recognize target-specific options
without it. Add CFLAGS to the CC invocation in cc-option.
Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 78352fced9d4..9dc5d2234e2a 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ DESTDIR := $(PREFIX)/share/kvm-unit-tests/
# cc-option
# Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
-cc-option = $(shell if $(CC) -Werror $(1) -S -o /dev/null -xc /dev/null \
+cc-option = $(shell if $(CC) $(CFLAGS) -Werror $(1) -S -o /dev/null -xc /dev/null \
> /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
libcflat := lib/libcflat.a
--
2.48.1
--
kvm-riscv mailing list
kvm-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kvm-riscv
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [kvm-unit-tests PATCH] Makefile: Use CFLAGS in cc-option
2025-03-07 8:39 [kvm-unit-tests PATCH] Makefile: Use CFLAGS in cc-option Andrew Jones
@ 2025-03-07 8:42 ` Thomas Huth
2025-03-07 8:45 ` Andrew Jones
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Huth @ 2025-03-07 8:42 UTC (permalink / raw)
To: Andrew Jones, kvm, kvmarm, kvm-riscv, linuxppc-dev, linux-s390
Cc: pbonzini, alexandru.elisei, eric.auger, lvivier, frankja,
imbrenda, nrb
On 07/03/2025 09.39, Andrew Jones wrote:
> When cross compiling with clang we need to specify the target in
> CFLAGS and cc-option will fail to recognize target-specific options
> without it. Add CFLAGS to the CC invocation in cc-option.
>
> Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
> ---
> Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 78352fced9d4..9dc5d2234e2a 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -21,7 +21,7 @@ DESTDIR := $(PREFIX)/share/kvm-unit-tests/
>
> # cc-option
> # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
> -cc-option = $(shell if $(CC) -Werror $(1) -S -o /dev/null -xc /dev/null \
> +cc-option = $(shell if $(CC) $(CFLAGS) -Werror $(1) -S -o /dev/null -xc /dev/null \
> > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
>
> libcflat := lib/libcflat.a
Reviewed-by: Thomas Huth <thuth@redhat.com>
--
kvm-riscv mailing list
kvm-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kvm-riscv
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [kvm-unit-tests PATCH] Makefile: Use CFLAGS in cc-option
2025-03-07 8:42 ` Thomas Huth
@ 2025-03-07 8:45 ` Andrew Jones
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Jones @ 2025-03-07 8:45 UTC (permalink / raw)
To: Thomas Huth
Cc: kvm, kvmarm, kvm-riscv, linuxppc-dev, linux-s390, pbonzini,
alexandru.elisei, eric.auger, lvivier, frankja, imbrenda, nrb
On Fri, Mar 07, 2025 at 09:42:03AM +0100, Thomas Huth wrote:
> On 07/03/2025 09.39, Andrew Jones wrote:
> > When cross compiling with clang we need to specify the target in
> > CFLAGS and cc-option will fail to recognize target-specific options
> > without it. Add CFLAGS to the CC invocation in cc-option.
> >
> > Signed-off-by: Andrew Jones <andrew.jones@linux.dev>
> > ---
> > Makefile | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Makefile b/Makefile
> > index 78352fced9d4..9dc5d2234e2a 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -21,7 +21,7 @@ DESTDIR := $(PREFIX)/share/kvm-unit-tests/
> > # cc-option
> > # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
> > -cc-option = $(shell if $(CC) -Werror $(1) -S -o /dev/null -xc /dev/null \
> > +cc-option = $(shell if $(CC) $(CFLAGS) -Werror $(1) -S -o /dev/null -xc /dev/null \
> > > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
> > libcflat := lib/libcflat.a
>
> Reviewed-by: Thomas Huth <thuth@redhat.com>
Thanks, but I just found out that I was too hasty with this patch. I broke
x86,
/builds/jones-drew/kvm-unit-tests/x86/Makefile.common:105: *** Recursive variable 'CFLAGS' references itself (eventually). Stop.
I'll try to sort that out and send a v2.
Thanks,
drew
--
kvm-riscv mailing list
kvm-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kvm-riscv
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-03-07 8:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-07 8:39 [kvm-unit-tests PATCH] Makefile: Use CFLAGS in cc-option Andrew Jones
2025-03-07 8:42 ` Thomas Huth
2025-03-07 8:45 ` Andrew Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).