mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
configure: add --disable-colo-proxy option
Add option to not build filter-rewriter and colo-compare when they are not needed. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Reviewed-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Zhang Chen <chen.zhang@intel.com> Message-Id: <20230515130640.46035-2-vsementsov@yandex-team.ru> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
266ccbb27b
commit
6c1e3906ce
5 changed files with 23 additions and 3 deletions
|
@ -86,6 +86,7 @@ meson_options_help() {
|
|||
printf "%s\n" ' capstone Whether and how to find the capstone library'
|
||||
printf "%s\n" ' cloop cloop image format support'
|
||||
printf "%s\n" ' cocoa Cocoa user interface (macOS only)'
|
||||
printf "%s\n" ' colo-proxy colo-proxy support'
|
||||
printf "%s\n" ' coreaudio CoreAudio sound support'
|
||||
printf "%s\n" ' crypto-afalg Linux AF_ALG crypto backend driver'
|
||||
printf "%s\n" ' curl CURL block device driver'
|
||||
|
@ -245,6 +246,8 @@ _meson_option_parse() {
|
|||
--disable-cloop) printf "%s" -Dcloop=disabled ;;
|
||||
--enable-cocoa) printf "%s" -Dcocoa=enabled ;;
|
||||
--disable-cocoa) printf "%s" -Dcocoa=disabled ;;
|
||||
--enable-colo-proxy) printf "%s" -Dcolo_proxy=enabled ;;
|
||||
--disable-colo-proxy) printf "%s" -Dcolo_proxy=disabled ;;
|
||||
--enable-coreaudio) printf "%s" -Dcoreaudio=enabled ;;
|
||||
--disable-coreaudio) printf "%s" -Dcoreaudio=disabled ;;
|
||||
--enable-coroutine-pool) printf "%s" -Dcoroutine_pool=true ;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue