meson: Fix meson build with --enable-libdaxctl
The daxctl library needs to be linked against when daxctl is asked for in configure. Signed-off-by: Bruce Rogers <brogers@suse.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
72bfe8ea63
commit
c7c91a749b
1
configure
vendored
1
configure
vendored
@ -7467,6 +7467,7 @@ fi
|
|||||||
|
|
||||||
if test "$libdaxctl" = "yes" ; then
|
if test "$libdaxctl" = "yes" ; then
|
||||||
echo "CONFIG_LIBDAXCTL=y" >> $config_host_mak
|
echo "CONFIG_LIBDAXCTL=y" >> $config_host_mak
|
||||||
|
echo "LIBDAXCTL_LIBS=$libdaxctl_libs" >> $config_host_mak
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$bochs" = "yes" ; then
|
if test "$bochs" = "yes" ; then
|
||||||
|
@ -380,6 +380,10 @@ if 'CONFIG_LIBPMEM' in config_host
|
|||||||
libpmem = declare_dependency(compile_args: config_host['LIBPMEM_CFLAGS'].split(),
|
libpmem = declare_dependency(compile_args: config_host['LIBPMEM_CFLAGS'].split(),
|
||||||
link_args: config_host['LIBPMEM_LIBS'].split())
|
link_args: config_host['LIBPMEM_LIBS'].split())
|
||||||
endif
|
endif
|
||||||
|
libdaxctl = not_found
|
||||||
|
if 'CONFIG_LIBDAXCTL' in config_host
|
||||||
|
libdaxctl = declare_dependency(link_args: config_host['LIBDAXCTL_LIBS'].split())
|
||||||
|
endif
|
||||||
|
|
||||||
# Create config-host.h
|
# Create config-host.h
|
||||||
|
|
||||||
@ -787,7 +791,7 @@ common_ss.add(files('cpus-common.c'))
|
|||||||
|
|
||||||
subdir('softmmu')
|
subdir('softmmu')
|
||||||
|
|
||||||
specific_ss.add(files('disas.c', 'exec.c', 'gdbstub.c'), capstone, libpmem)
|
specific_ss.add(files('disas.c', 'exec.c', 'gdbstub.c'), capstone, libpmem, libdaxctl)
|
||||||
specific_ss.add(files('exec-vary.c'))
|
specific_ss.add(files('exec-vary.c'))
|
||||||
specific_ss.add(when: 'CONFIG_TCG', if_true: files(
|
specific_ss.add(when: 'CONFIG_TCG', if_true: files(
|
||||||
'fpu/softfloat.c',
|
'fpu/softfloat.c',
|
||||||
|
Loading…
Reference in New Issue
Block a user