summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3240g-eval/telnetd
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-20 13:23:42 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-20 13:23:42 -0600
commita94cda2860f4ea87f254966f71307e928ffe9bcb (patch)
treeb29057af9d4225d96e8d3b661be773a63f596ea2 /nuttx/configs/stm3240g-eval/telnetd
parentdfea55cdfbbe46972be0ccc9eed2c5402c96ca22 (diff)
downloadnuttx-a94cda2860f4ea87f254966f71307e928ffe9bcb.tar.gz
nuttx-a94cda2860f4ea87f254966f71307e928ffe9bcb.tar.bz2
nuttx-a94cda2860f4ea87f254966f71307e928ffe9bcb.zip
Finishes separation of debug symbols and optimization selections
Diffstat (limited to 'nuttx/configs/stm3240g-eval/telnetd')
-rw-r--r--nuttx/configs/stm3240g-eval/telnetd/Make.defs6
1 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/configs/stm3240g-eval/telnetd/Make.defs b/nuttx/configs/stm3240g-eval/telnetd/Make.defs
index 1d7c60a56..003ec1882 100644
--- a/nuttx/configs/stm3240g-eval/telnetd/Make.defs
+++ b/nuttx/configs/stm3240g-eval/telnetd/Make.defs
@@ -70,8 +70,10 @@ ARCHCCMAJOR = ${shell echo $(ARCHCCVERSION) | cut -d'.' -f1}
ifeq ($(CONFIG_DEBUG_SYMBOLS),y)
ARCHOPTIMIZATION = -g
-else
- ARCHOPTIMIZATION = $(MAXOPTIMIZATION) -fno-strict-aliasing -fno-strength-reduce -fomit-frame-pointer
+endif
+
+ifneq ($(CONFIG_DEBUG_NOOPT),y)
+ ARCHOPTIMIZATION += $(MAXOPTIMIZATION) -fno-strict-aliasing -fno-strength-reduce -fomit-frame-pointer
endif
ARCHCFLAGS = -fno-builtin