qemu.mk: remove DEBUG=1
qemu.mk is the only platform that sets DEBUG=1 by default. This is not
very useful, as it only deals with compiler optimizations and debug
symbols, not with debug traces. Those debug flags should be enabled only
when doing actual debugging (with a debugger). On the other hand it
makes execution much slower: "make check-only" takes 9 minutes and 9
seconds on my machine, versus 2 minutes and 18 seconds without DEBUG=1
(build command: "make CFG_CORE_UNSAFE_MODEXP=y").
Therefore, remove DEBUG=1.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
diff --git a/qemu.mk b/qemu.mk
index 205ebca..c9cb8c9 100644
--- a/qemu.mk
+++ b/qemu.mk
@@ -25,8 +25,6 @@
QEMU_PATH ?= $(ROOT)/qemu
QEMU_BUILD ?= $(QEMU_PATH)/build
-DEBUG = 1
-
################################################################################
# Targets
################################################################################