mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
meson: fix machine option for x86_version
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>
Link: https://lore.kernel.org/r/20241004223715.1275428-1-pierrick.bouvier@linaro.org
Cc: qemu-stable@nongnu.org
Fixes: ef7d1adfa8
("meson: allow configuring the x86-64 baseline", 2024-06-28)
Revieved-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
d0f0cd5b1f
commit
461a9252e2
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@ if host_arch in ['i386', 'x86_64']
|
||||||
qemu_common_flags = cc.get_supported_arguments('-mneeded') + qemu_common_flags
|
qemu_common_flags = cc.get_supported_arguments('-mneeded') + qemu_common_flags
|
||||||
endif
|
endif
|
||||||
if get_option('x86_version') >= '3'
|
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
|
endif
|
||||||
|
|
||||||
# add required vector instruction set (each level implies those below)
|
# add required vector instruction set (each level implies those below)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue