summaryrefslogtreecommitdiffstats
path: root/bsps/arm/lpc176x/config/lpc1768_mbed.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/arm/lpc176x/config/lpc1768_mbed.cfg')
-rw-r--r--bsps/arm/lpc176x/config/lpc1768_mbed.cfg22
1 files changed, 22 insertions, 0 deletions
diff --git a/bsps/arm/lpc176x/config/lpc1768_mbed.cfg b/bsps/arm/lpc176x/config/lpc1768_mbed.cfg
new file mode 100644
index 0000000000..3e9255e88f
--- /dev/null
+++ b/bsps/arm/lpc176x/config/lpc1768_mbed.cfg
@@ -0,0 +1,22 @@
+#
+# Config file for mbed LPC1768 board.
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU = arm
+
+CPU_CFLAGS = -march=armv7-m -mthumb
+
+CFLAGS_OPTIMIZE_V = -O2 -ggdb3
+CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
+LDFLAGS = -Wl,--gc-sections
+
+BINEXT?=.bin
+# This defines the operations performed on the linked executable.
+# is currently required.
+define bsp-post-link
+ $(OBJCOPY) -O binary --strip-all \
+ $(basename $@)$(EXEEXT) $(basename $@)$(BINEXT)
+ $(SIZE) $(basename $@)$(EXEEXT)
+endef