qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] meson: fix machine option for x86_version
@ 2024-10-04 22:37 Pierrick Bouvier
  2024-10-05 15:20 ` Alex Bennée
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Pierrick Bouvier @ 2024-10-04 22:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Daniel P. Berrangé, Paolo Bonzini,
	Philippe Mathieu-Daudé, Marc-André Lureau,
	Pierrick Bouvier

s/mbmi1/mbmi/

When configuring with -Dx86_version >= 3, meson step works, but
compilation fails because option -mbmi1 is unknown.

Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index af2ce595dcc..ebd914628c8 100644
--- a/meson.build
+++ b/meson.build
@@ -362,7 +362,7 @@ if host_arch in ['i386', 'x86_64']
     qemu_common_flags = cc.get_supported_arguments('-mneeded') + qemu_common_flags
   endif
   if get_option('x86_version') >= '3'
-    qemu_common_flags = ['-mmovbe', '-mabm', '-mbmi1', '-mbmi2', '-mfma', '-mf16c'] + qemu_common_flags
+    qemu_common_flags = ['-mmovbe', '-mabm', '-mbmi', '-mbmi2', '-mfma', '-mf16c'] + qemu_common_flags
   endif
 
   # add required vector instruction set (each level implies those below)
-- 
2.39.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] meson: fix machine option for x86_version
  2024-10-04 22:37 [PATCH] meson: fix machine option for x86_version Pierrick Bouvier
@ 2024-10-05 15:20 ` Alex Bennée
  2024-10-05 16:08 ` Michael Tokarev
  2024-10-06  7:44 ` Paolo Bonzini
  2 siblings, 0 replies; 5+ messages in thread
From: Alex Bennée @ 2024-10-05 15:20 UTC (permalink / raw)
  To: Pierrick Bouvier
  Cc: qemu-devel, Daniel P. Berrangé, Paolo Bonzini,
	Philippe Mathieu-Daudé, Marc-André Lureau

Pierrick Bouvier <pierrick.bouvier@linaro.org> writes:

> s/mbmi1/mbmi/
>
> When configuring with -Dx86_version >= 3, meson step works, but
> compilation fails because option -mbmi1 is unknown.
>
> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Tested-by: Alex Bennée <alex.bennee@linaro.org>

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] meson: fix machine option for x86_version
  2024-10-04 22:37 [PATCH] meson: fix machine option for x86_version Pierrick Bouvier
  2024-10-05 15:20 ` Alex Bennée
@ 2024-10-05 16:08 ` Michael Tokarev
  2024-10-05 16:18   ` Michael Tokarev
  2024-10-06  7:44 ` Paolo Bonzini
  2 siblings, 1 reply; 5+ messages in thread
From: Michael Tokarev @ 2024-10-05 16:08 UTC (permalink / raw)
  To: Pierrick Bouvier, qemu-devel
  Cc: Daniel P. Berrangé, Paolo Bonzini,
	Philippe Mathieu-Daudé, Marc-André Lureau

05.10.2024 01:37, Pierrick Bouvier пишет:
> s/mbmi1/mbmi/
> 
> When configuring with -Dx86_version >= 3, meson step works, but
> compilation fails because option -mbmi1 is unknown.

Fixes: v9.0.0-1771-gef7d1adfa8 "meson: allow configuring the x86-64 baseline"
Revieved-by: Michael Tokarev <mjt@tls.msk.ru>

Thanks,

/mjt


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] meson: fix machine option for x86_version
  2024-10-05 16:08 ` Michael Tokarev
@ 2024-10-05 16:18   ` Michael Tokarev
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Tokarev @ 2024-10-05 16:18 UTC (permalink / raw)
  To: Pierrick Bouvier, qemu-devel
  Cc: Daniel P. Berrangé, Paolo Bonzini,
	Philippe Mathieu-Daudé, Marc-André Lureau

05.10.2024 19:08, Michael Tokarev wrote:
> 05.10.2024 01:37, Pierrick Bouvier wrote:
>> s/mbmi1/mbmi/
>>
>> When configuring with -Dx86_version >= 3, meson step works, but
>> compilation fails because option -mbmi1 is unknown.
> 
> Fixes: v9.0.0-1771-gef7d1adfa8 "meson: allow configuring the x86-64 baseline"
> Revieved-by: Michael Tokarev <mjt@tls.msk.ru>

Also marked this one for qemu-stable.

/mjt



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] meson: fix machine option for x86_version
  2024-10-04 22:37 [PATCH] meson: fix machine option for x86_version Pierrick Bouvier
  2024-10-05 15:20 ` Alex Bennée
  2024-10-05 16:08 ` Michael Tokarev
@ 2024-10-06  7:44 ` Paolo Bonzini
  2 siblings, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2024-10-06  7:44 UTC (permalink / raw)
  To: Pierrick Bouvier
  Cc: qemu-devel, Daniel P . Berrangé, Philippe Mathieu-Daudé,
	Marc-André Lureau

Queued, thanks.

Paolo



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-10-06  7:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-04 22:37 [PATCH] meson: fix machine option for x86_version Pierrick Bouvier
2024-10-05 15:20 ` Alex Bennée
2024-10-05 16:08 ` Michael Tokarev
2024-10-05 16:18   ` Michael Tokarev
2024-10-06  7:44 ` Paolo Bonzini

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).