Skip to content
Snippets Groups Projects
Commit a0e61807 authored by Philippe Mathieu-Daudé's avatar Philippe Mathieu-Daudé Committed by Markus Armbruster
Browse files

qapi: Remove QMP events and commands from user-mode builds


We removed the QMP loop in user-mode builds in commit 1935e0e4
("qapi/meson: Remove QMP from user-mode emulation"), now commands
and events code is unreachable.

Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210224171642.3242293-1-philmd@redhat.com>
Acked-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
parent 96291f13
No related branches found
No related tags found
No related merge requests found
...@@ -102,11 +102,15 @@ foreach module : qapi_all_modules ...@@ -102,11 +102,15 @@ foreach module : qapi_all_modules
'qapi-types-@0@.h'.format(module), 'qapi-types-@0@.h'.format(module),
'qapi-visit-@0@.c'.format(module), 'qapi-visit-@0@.c'.format(module),
'qapi-visit-@0@.h'.format(module), 'qapi-visit-@0@.h'.format(module),
'qapi-events-@0@.c'.format(module),
'qapi-events-@0@.h'.format(module),
'qapi-commands-@0@.c'.format(module),
'qapi-commands-@0@.h'.format(module),
] ]
if have_system or have_tools
qapi_module_outputs += [
'qapi-events-@0@.c'.format(module),
'qapi-events-@0@.h'.format(module),
'qapi-commands-@0@.c'.format(module),
'qapi-commands-@0@.h'.format(module),
]
endif
if module.endswith('-target') if module.endswith('-target')
qapi_specific_outputs += qapi_module_outputs qapi_specific_outputs += qapi_module_outputs
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment