mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
This inverts the dependency from hwcore to system, replacing it with a dependency from system to hwcore. It also matches how hw/core/sysbus.h is part of the system-sys crate, and hw/core/sysbus.c is part of system_ss on the C side. This fixes a linker error in hwcore integration tests on msys2. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
10 lines
282 B
Meson
10 lines
282 B
Meson
_system_rs = static_library(
|
|
'system',
|
|
'src/lib.rs',
|
|
link_with: [_bql_rs, _hwcore_rs, _migration_rs, _qom_rs, _util_rs],
|
|
dependencies: [glib_sys_rs, common_rs, qemu_macros, system_sys_rs],
|
|
)
|
|
|
|
system_rs = declare_dependency(link_with: [_system_rs],
|
|
dependencies: [hwcore])
|