summaryrefslogtreecommitdiff
path: root/nuttx/configs/olimex-lpc1766stk/usbserial
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/olimex-lpc1766stk/usbserial
parentdfea55cdfbbe46972be0ccc9eed2c5402c96ca22 (diff)
downloadpx4-nuttx-a94cda2860f4ea87f254966f71307e928ffe9bcb.tar.gz
px4-nuttx-a94cda2860f4ea87f254966f71307e928ffe9bcb.tar.bz2
px4-nuttx-a94cda2860f4ea87f254966f71307e928ffe9bcb.zip
Finishes separation of debug symbols and optimization selections
Diffstat (limited to 'nuttx/configs/olimex-lpc1766stk/usbserial')
-rw-r--r--nuttx/configs/olimex-lpc1766stk/usbserial/Make.defs6
1 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/configs/olimex-lpc1766stk/usbserial/Make.defs b/nuttx/configs/olimex-lpc1766stk/usbserial/Make.defs
index e0cd16c1b..d2fa3edcd 100644
--- a/nuttx/configs/olimex-lpc1766stk/usbserial/Make.defs
+++ b/nuttx/configs/olimex-lpc1766stk/usbserial/Make.defs
@@ -68,8 +68,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