mirror of
https://github.com/qemu/qemu.git
synced 2025-08-10 21:34:57 +00:00
configure: Add uadk option
Add --enable-uadk and --disable-uadk options to enable and disable UADK compression accelerator. This is for using UADK based hardware accelerators for live migration. Reviewed-by: Fabiano Rosas <farosas@suse.de> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> Reviewed-by: Zhangfei Gao <zhangfei.gao@linaro.org> Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
3ae9bd9782
commit
cfc589a89b
14
meson.build
14
meson.build
@ -1207,6 +1207,18 @@ if not get_option('qpl').auto() or have_system
|
|||||||
required: get_option('qpl'),
|
required: get_option('qpl'),
|
||||||
method: 'pkg-config')
|
method: 'pkg-config')
|
||||||
endif
|
endif
|
||||||
|
uadk = not_found
|
||||||
|
if not get_option('uadk').auto() or have_system
|
||||||
|
libwd = dependency('libwd', version: '>=2.6',
|
||||||
|
required: get_option('uadk'),
|
||||||
|
method: 'pkg-config')
|
||||||
|
libwd_comp = dependency('libwd_comp', version: '>=2.6',
|
||||||
|
required: get_option('uadk'),
|
||||||
|
method: 'pkg-config')
|
||||||
|
if libwd.found() and libwd_comp.found()
|
||||||
|
uadk = declare_dependency(dependencies: [libwd, libwd_comp])
|
||||||
|
endif
|
||||||
|
endif
|
||||||
virgl = not_found
|
virgl = not_found
|
||||||
|
|
||||||
have_vhost_user_gpu = have_tools and host_os == 'linux' and pixman.found()
|
have_vhost_user_gpu = have_tools and host_os == 'linux' and pixman.found()
|
||||||
@ -2340,6 +2352,7 @@ config_host_data.set('CONFIG_STATX', has_statx)
|
|||||||
config_host_data.set('CONFIG_STATX_MNT_ID', has_statx_mnt_id)
|
config_host_data.set('CONFIG_STATX_MNT_ID', has_statx_mnt_id)
|
||||||
config_host_data.set('CONFIG_ZSTD', zstd.found())
|
config_host_data.set('CONFIG_ZSTD', zstd.found())
|
||||||
config_host_data.set('CONFIG_QPL', qpl.found())
|
config_host_data.set('CONFIG_QPL', qpl.found())
|
||||||
|
config_host_data.set('CONFIG_UADK', uadk.found())
|
||||||
config_host_data.set('CONFIG_FUSE', fuse.found())
|
config_host_data.set('CONFIG_FUSE', fuse.found())
|
||||||
config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found())
|
config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found())
|
||||||
config_host_data.set('CONFIG_SPICE_PROTOCOL', spice_protocol.found())
|
config_host_data.set('CONFIG_SPICE_PROTOCOL', spice_protocol.found())
|
||||||
@ -4454,6 +4467,7 @@ summary_info += {'bzip2 support': libbzip2}
|
|||||||
summary_info += {'lzfse support': liblzfse}
|
summary_info += {'lzfse support': liblzfse}
|
||||||
summary_info += {'zstd support': zstd}
|
summary_info += {'zstd support': zstd}
|
||||||
summary_info += {'Query Processing Library support': qpl}
|
summary_info += {'Query Processing Library support': qpl}
|
||||||
|
summary_info += {'UADK Library support': uadk}
|
||||||
summary_info += {'NUMA host support': numa}
|
summary_info += {'NUMA host support': numa}
|
||||||
summary_info += {'capstone': capstone}
|
summary_info += {'capstone': capstone}
|
||||||
summary_info += {'libpmem support': libpmem}
|
summary_info += {'libpmem support': libpmem}
|
||||||
|
@ -261,6 +261,8 @@ option('zstd', type : 'feature', value : 'auto',
|
|||||||
description: 'zstd compression support')
|
description: 'zstd compression support')
|
||||||
option('qpl', type : 'feature', value : 'auto',
|
option('qpl', type : 'feature', value : 'auto',
|
||||||
description: 'Query Processing Library support')
|
description: 'Query Processing Library support')
|
||||||
|
option('uadk', type : 'feature', value : 'auto',
|
||||||
|
description: 'UADK Library support')
|
||||||
option('fuse', type: 'feature', value: 'auto',
|
option('fuse', type: 'feature', value: 'auto',
|
||||||
description: 'FUSE block device export')
|
description: 'FUSE block device export')
|
||||||
option('fuse_lseek', type : 'feature', value : 'auto',
|
option('fuse_lseek', type : 'feature', value : 'auto',
|
||||||
|
@ -221,6 +221,7 @@ meson_options_help() {
|
|||||||
printf "%s\n" ' xkbcommon xkbcommon support'
|
printf "%s\n" ' xkbcommon xkbcommon support'
|
||||||
printf "%s\n" ' zstd zstd compression support'
|
printf "%s\n" ' zstd zstd compression support'
|
||||||
printf "%s\n" ' qpl Query Processing Library support'
|
printf "%s\n" ' qpl Query Processing Library support'
|
||||||
|
printf "%s\n" ' uadk UADK Library support'
|
||||||
}
|
}
|
||||||
_meson_option_parse() {
|
_meson_option_parse() {
|
||||||
case $1 in
|
case $1 in
|
||||||
@ -561,6 +562,8 @@ _meson_option_parse() {
|
|||||||
--disable-zstd) printf "%s" -Dzstd=disabled ;;
|
--disable-zstd) printf "%s" -Dzstd=disabled ;;
|
||||||
--enable-qpl) printf "%s" -Dqpl=enabled ;;
|
--enable-qpl) printf "%s" -Dqpl=enabled ;;
|
||||||
--disable-qpl) printf "%s" -Dqpl=disabled ;;
|
--disable-qpl) printf "%s" -Dqpl=disabled ;;
|
||||||
|
--enable-uadk) printf "%s" -Duadk=enabled ;;
|
||||||
|
--disable-uadk) printf "%s" -Duadk=disabled ;;
|
||||||
*) return 1 ;;
|
*) return 1 ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user