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: ef7d1adfa85 ("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> (cherry picked from commit 461a9252e249adab5f0bae3b9634be77dd5be17e) Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
a4f9d9a4b2
commit
e894be998d
@ -362,7 +362,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…
x
Reference in New Issue
Block a user