QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
647 B
21 lines
647 B
#
|
|
# Plugin Support
|
|
#
|
|
|
|
obj-y += loader.o
|
|
obj-y += core.o
|
|
obj-y += api.o
|
|
|
|
# Abuse -libs suffix to only link with --dynamic-list/-exported_symbols_list
|
|
# when the final binary includes the plugin object.
|
|
#
|
|
# Note that simply setting LDFLAGS is not enough: we build binaries that
|
|
# never link plugin.o, and the linker might fail (at least ld64 does)
|
|
# if the symbols in the list are not in the output binary.
|
|
ifdef CONFIG_HAS_LD_DYNAMIC_LIST
|
|
api.o-libs := -Wl,--dynamic-list=$(BUILD_DIR)/qemu-plugins-ld.symbols
|
|
else
|
|
ifdef CONFIG_HAS_LD_EXPORTED_SYMBOLS_LIST
|
|
api.o-libs := -Wl,-exported_symbols_list,$(BUILD_DIR)/qemu-plugins-ld64.symbols
|
|
endif
|
|
endif
|
|
|