mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Recent changes introduced build errors in the i386 HVF backend: - ../accel/hvf/hvf-accel-ops.c:163:17: error: no member named 'guest_debug_enabled' in 'struct AccelCPUState' 163 | cpu->accel->guest_debug_enabled = false; - ../accel/hvf/hvf-accel-ops.c:151:51 error: no member named 'unblock_ipi_mask' in 'struct AccelCPUState' - ../target/i386/hvf/hvf.c:736:5 error: use of undeclared identifier 'rip' - ../target/i386/hvf/hvf.c:737:5 error: use of undeclared identifier 'env' This patch corrects the field usage and move identifier to correct function ensuring successful compilation of the i386 HVF backend. These issues were caused by: Fixes: |
2 weeks ago | |
|---|---|---|
| .. | ||
| README.md | 2 years ago | |
| hvf-cpu.c | 5 months ago | |
| hvf-i386.h | 8 months ago | |
| hvf.c | 2 weeks ago | |
| meson.build | 8 months ago | |
| panic.h | 5 years ago | |
| vmcs.h | 3 years ago | |
| vmx.h | 8 months ago | |
| x86.c | 8 months ago | |
| x86_cpuid.c | 7 months ago | |
| x86_descr.c | 10 months ago | |
| x86_descr.h | 8 months ago | |
| x86_mmu.c | 8 months ago | |
| x86_mmu.h | 2 years ago | |
| x86_task.c | 8 months ago | |
| x86_task.h | 10 months ago | |
| x86hvf.c | 2 months ago | |
| x86hvf.h | 10 months ago | |
README.md
OS X Hypervisor.framework support in QEMU
These sources (and ../hvf-all.c) are adapted from Veertu Inc's vdhh (Veertu Desktop Hosted Hypervisor) (last known location: https://github.com/veertuinc/vdhh) with some minor changes, the most significant of which were:
- Adapt to our current QEMU's
CPUStatestructure andaddress_space_rwAPI; many struct members have been moved around (emulated x86 state, xsave_buf) due to historical differences + QEMU needing to handle more emulation targets. - Removal of
apic_pageand hyperv-related functionality. - More relaxed use of
bql_lock.