mirror of https://gitee.com/openkylin/qemu.git
10 lines
351 B
Meson
10 lines
351 B
Meson
if 'CONFIG_PVRDMA' in config_host
|
|
# if not found, CONFIG_PVRDMA should not be set
|
|
# FIXME: broken on big endian architectures
|
|
libumad = cc.find_library('ibumad', required: true)
|
|
executable('rdmacm-mux', files('main.c'), genh,
|
|
dependencies: [glib, libumad],
|
|
build_by_default: false,
|
|
install: false)
|
|
endif
|