mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
hypervisor: emulator: adjust iced-x86 feature flags
The fastfmt feature and VEX support use techniques that appear to leak memory in the eye of LLVM's address sanitizer. While at it, disable a bunch of instruction set decoding support we never intend to support. Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
@@ -43,7 +43,16 @@ vmm-sys-util = { workspace = true, features = ["with-serde"] }
|
||||
|
||||
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
|
||||
default-features = false
|
||||
features = ["decoder", "fast_fmt", "instr_info", "op_code_info", "std"]
|
||||
features = [
|
||||
"decoder",
|
||||
"instr_info",
|
||||
"no_d3now",
|
||||
"no_evex",
|
||||
"no_vex",
|
||||
"no_xop",
|
||||
"op_code_info",
|
||||
"std",
|
||||
]
|
||||
optional = true
|
||||
version = "1.21.0"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user