aboutsummaryrefslogtreecommitdiff
path: root/nuttx/configs/olimex-lpc1766stk/thttpd
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-06 18:09:05 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-06 18:09:05 +0000
commitee341514da6ef18f2dca79226e5221268d49f4d2 (patch)
tree224185a0428861368a52eec226078358748b6912 /nuttx/configs/olimex-lpc1766stk/thttpd
parent79e092e3627aeaaa351fbbc2c19f3b0311dc4001 (diff)
downloadpx4-firmware-ee341514da6ef18f2dca79226e5221268d49f4d2.tar.gz
px4-firmware-ee341514da6ef18f2dca79226e5221268d49f4d2.tar.bz2
px4-firmware-ee341514da6ef18f2dca79226e5221268d49f4d2.zip
All Cortex-M Make.defs files updated to use buildroot EABI toolchain if BUILDROOT=y selected
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5219 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/olimex-lpc1766stk/thttpd')
-rw-r--r--nuttx/configs/olimex-lpc1766stk/thttpd/Make.defs8
1 files changed, 6 insertions, 2 deletions
diff --git a/nuttx/configs/olimex-lpc1766stk/thttpd/Make.defs b/nuttx/configs/olimex-lpc1766stk/thttpd/Make.defs
index dbd84c2a6..96270bc28 100644
--- a/nuttx/configs/olimex-lpc1766stk/thttpd/Make.defs
+++ b/nuttx/configs/olimex-lpc1766stk/thttpd/Make.defs
@@ -58,8 +58,12 @@ ifeq ($(CONFIG_LPC17_DEVKITARM),y)
endif
ifeq ($(CONFIG_LPC17_BUILDROOT),y)
# NuttX buildroot under Linux or Cygwin
- CROSSDEV = arm-nuttx-elf-
- ARCHCPUFLAGS = -mtune=cortex-m3 -march=armv7-m -mfloat-abi=soft
+ # OABI
+ # CROSSDEV = arm-nuttx-elf-
+ # ARCHCPUFLAGS = -mtune=cortex-m3 -march=armv7-m -mfloat-abi=soft
+ # EABI
+ CROSSDEV = arm-nuttx-eabi-
+ ARCHCPUFLAGS = -mcpu=cortex-m3 -mthumb -mfloat-abi=soft
MAXOPTIMIZATION = -Os
endif