]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
linux-user: disable qemu-bridge-helper and socket_scm_helper build
authorLaurent Vivier <laurent@vivier.eu>
Tue, 5 Jun 2018 16:09:58 +0000 (18:09 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Mon, 11 Jun 2018 12:40:11 +0000 (14:40 +0200)
linux-user targets don't need them, and if we ask to build statically
linked binaries, some static libraries they need are not available.

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20180605160958.5434-1-laurent@vivier.eu>

Makefile
tests/Makefile.include

index 023b3437ec6a16da8d83176c531956019d8ea9be..e4bc34a1cb4f6255b89692e51b78906ff85e8115 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -351,7 +351,7 @@ $(call set-vpath, $(SRC_PATH))
 
 LIBS+=-lz $(LIBS_TOOLS)
 
-HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
+HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = qemu-bridge-helper$(EXESUF)
 
 ifdef BUILD_DOCS
 DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
index d098a104bbcfcc7040c3f78b186cf5c239c364a1..10397ed15924de899213c3673f09497b4a859fb7 100644 (file)
@@ -930,7 +930,7 @@ check-report.html: check-report.xml
 
 # Other tests
 
-QEMU_IOTESTS_HELPERS-$(CONFIG_LINUX) = tests/qemu-iotests/socket_scm_helper$(EXESUF)
+QEMU_IOTESTS_HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = tests/qemu-iotests/socket_scm_helper$(EXESUF)
 
 .PHONY: check-tests/qemu-iotests-quick.sh
 check-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF) $(QEMU_IOTESTS_HELPERS-y)