From c60c77a7f542ecc5c4737cc9f3fe7ef2437c1e29 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Wed, 26 Apr 2017 11:09:56 +0200 Subject: [PATCH] Enable debug information when building with DEBUG=1 Change-Id: Ie8d5305da64d0e2de7656d83bcbfa1d5b083c1ba --- build/config.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/config.mak b/build/config.mak index 3020a8436..19bc22d22 100644 --- a/build/config.mak +++ b/build/config.mak @@ -7,7 +7,7 @@ DEBUG ?= 1 # Do not edit below this ifeq ($(DEBUG),1) -OPTIM_SFLAGS ?= -O0 +OPTIM_SFLAGS ?= -O0 -g else OPTIM_SFLAGS ?= -Os endif