target/i386: hyperv: add stub for hyperv_syndbg_query_options

Building without CONFIG_HYPERV is currently broken due to a missing
symbol 'hyperv_syndbg_query_options'.  Add it to the stubs
that exist for that very reasons.

Reported-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2024-11-14 13:13:51 +01:00
parent f0cfd06786
commit 6607b77b94
1 changed files with 5 additions and 0 deletions

View File

@ -56,3 +56,8 @@ void hyperv_x86_synic_update(X86CPU *cpu)
void hyperv_x86_set_vmbus_recommended_features_enabled(void)
{
}
uint64_t hyperv_syndbg_query_options(void)
{
return 0;
}