build: Don't disable the monitor when using QEMU_PIPE

Performance is about the same, it does not appear to cause issues,
and older versions of QEMU don't support this flag.

Change-Id: Ie45a2396c7b0d3098923244d92b15422491413a1
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2015-07-29 14:25:29 -07:00 committed by Anas Nashif
commit 22c3fa3742

View file

@ -1165,9 +1165,8 @@ tools/%: FORCE
QEMU_FLAGS = $(QEMU_FLAGS_$(SRCARCH)) -pidfile qemu.pid
ifneq ($(QEMU_PIPE),)
# Send console output to a pipe and disable the interactive monitor,
# used for running automated sanity tests
QEMU_FLAGS += -serial pipe:$(QEMU_PIPE) -monitor none
# Send console output to a pipe, used for running automated sanity tests
QEMU_FLAGS += -serial pipe:$(QEMU_PIPE)
else
QEMU_FLAGS += -serial mon:stdio
endif