contrib/elf2dmp: convert to meson
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
5ee24e78f5
commit
1d7bb6ab2c
4
Makefile
4
Makefile
@ -302,7 +302,6 @@ dummy := $(call unnest-vars,, \
|
||||
authz-obj-y \
|
||||
chardev-obj-y \
|
||||
qga-obj-y \
|
||||
elf2dmp-obj-y \
|
||||
qga-vss-dll-obj-y \
|
||||
block-obj-y \
|
||||
block-obj-m \
|
||||
@ -512,9 +511,6 @@ ifneq ($(EXESUF),)
|
||||
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
|
||||
endif
|
||||
|
||||
elf2dmp$(EXESUF): $(elf2dmp-obj-y)
|
||||
$(call LINK, $^)
|
||||
|
||||
module_block.h: $(SRC_PATH)/scripts/modules/module_block.py config-host.mak
|
||||
$(call quiet-command,$(PYTHON) $< $@ \
|
||||
$(addprefix $(SRC_PATH)/,$(patsubst %.mo,%.c,$(block-obj-m))), \
|
||||
|
@ -100,9 +100,3 @@ version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
|
||||
# extracted into a QAPI schema module, or perhaps a separate schema.
|
||||
qga-obj-y = qga/
|
||||
qga-vss-dll-obj-y = qga/
|
||||
|
||||
######################################################################
|
||||
# contrib
|
||||
elf2dmp-obj-y = contrib/elf2dmp/
|
||||
|
||||
######################################################################
|
||||
|
3
configure
vendored
3
configure
vendored
@ -6729,9 +6729,6 @@ if test "$want_tools" = "yes" ; then
|
||||
if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then
|
||||
tools="qemu-nbd\$(EXESUF) qemu-storage-daemon\$(EXESUF) $tools"
|
||||
fi
|
||||
if [ "$curl" = "yes" ]; then
|
||||
tools="elf2dmp\$(EXESUF) $tools"
|
||||
fi
|
||||
fi
|
||||
if test "$softmmu" = yes ; then
|
||||
if test "$linux" = yes; then
|
||||
|
@ -1,4 +0,0 @@
|
||||
elf2dmp-obj-y = main.o addrspace.o download.o pdb.o qemu_elf.o
|
||||
|
||||
download.o-cflags := $(CURL_CFLAGS)
|
||||
download.o-libs := $(CURL_LIBS)
|
5
contrib/elf2dmp/meson.build
Normal file
5
contrib/elf2dmp/meson.build
Normal file
@ -0,0 +1,5 @@
|
||||
if 'CONFIG_CURL' in config_host
|
||||
executable('elf2dmp', files('main.c', 'addrspace.c', 'download.c', 'pdb.c', 'qemu_elf.c'),
|
||||
dependencies: [glib, curl],
|
||||
install: true)
|
||||
endif
|
@ -110,6 +110,11 @@ if 'CONFIG_VIRGL' in config_host
|
||||
virgl = declare_dependency(compile_args: config_host['VIRGL_CFLAGS'].split(),
|
||||
link_args: config_host['VIRGL_LIBS'].split())
|
||||
endif
|
||||
curl = not_found
|
||||
if 'CONFIG_CURL' in config_host
|
||||
curl = declare_dependency(compile_args: config_host['CURL_CFLAGS'].split(),
|
||||
link_args: config_host['CURL_LIBS'].split())
|
||||
endif
|
||||
|
||||
target_dirs = config_host['TARGET_DIRS'].split()
|
||||
have_user = false
|
||||
@ -274,6 +279,7 @@ qemuutil = declare_dependency(link_with: libqemuutil,
|
||||
|
||||
if have_tools
|
||||
subdir('contrib/rdmacm-mux')
|
||||
subdir('contrib/elf2dmp')
|
||||
|
||||
if 'CONFIG_VHOST_USER' in config_host
|
||||
subdir('contrib/libvhost-user')
|
||||
|
Loading…
Reference in New Issue
Block a user