]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
contrib/plugins: be more vocal building
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 29 Jul 2024 14:44:12 +0000 (15:44 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Tue, 30 Jul 2024 10:44:21 +0000 (11:44 +0100)
With the conversion to meson and removing the old QEMU Makefile
baggage we became very silent when building the plugins. Bring in a
copy of the quiet-command logic (and some magic COMMAs) so we can at
least assure developers we are building them.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2457
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240729144414.830369-13-alex.bennee@linaro.org>

contrib/plugins/Makefile

index 98a89d5c40f3e54fd07fa7e4a01c529345d678c3..edf256cd9d11f0a00ff839f9d98656c885f9ebe9 100644 (file)
@@ -39,26 +39,41 @@ endif
 
 SONAMES := $(addsuffix $(SO_SUFFIX),$(addprefix lib,$(NAMES)))
 
-# The main QEMU uses Glib extensively so it's perfectly fine to use it
+# The main QEMU uses Glib extensively so it is perfectly fine to use it
 # in plugins (which many example do).
 PLUGIN_CFLAGS := $(shell $(PKG_CONFIG) --cflags glib-2.0)
 PLUGIN_CFLAGS += -fPIC -Wall
 PLUGIN_CFLAGS += -I$(TOP_SRC_PATH)/include/qemu
 
+# Helper that honours V=1 so we get some output when compiling
+quiet-@ = $(if $(V),,@$(if $1,printf "  %-7s %s\n" "$(strip $1)" "$(strip $2)" && ))
+quiet-command = $(call quiet-@,$2,$3)$1
+
+# for including , in command strings
+COMMA := ,
+
 all: $(SONAMES)
 
 %.o: %.c
-       $(CC) $(CFLAGS) $(PLUGIN_CFLAGS) -c -o $@ $<
+       $(call quiet-command, \
+               $(CC) $(CFLAGS) $(PLUGIN_CFLAGS) -c -o $@ $<, \
+               BUILD, plugin $@)
 
 ifeq ($(CONFIG_WIN32),y)
 lib%$(SO_SUFFIX): %.o win32_linker.o ../../plugins/libqemu_plugin_api.a
-       $(CC) -shared -o $@ $^ $(LDLIBS)
+       $(call quiet-command, \
+               $(CC) -shared -o $@ $^ $(LDLIBS), \
+               LINK, plugin $@)
 else ifeq ($(CONFIG_DARWIN),y)
 lib%$(SO_SUFFIX): %.o
-       $(CC) -bundle -Wl,-undefined,dynamic_lookup -o $@ $^ $(LDLIBS)
+       $(call quiet-command, \
+               $(CC) -bundle -Wl$(COMMA)-undefined$(COMMA)dynamic_lookup -o $@ $^ $(LDLIBS), \
+               LINK, plugin $@)
 else
 lib%$(SO_SUFFIX): %.o
-       $(CC) -shared -o $@ $^ $(LDLIBS)
+       $(call quiet-command, \
+               $(CC) -shared -o $@ $^ $(LDLIBS), \
+               LINK, plugin $@)
 endif