Warning, /bsps/arm/lpc176x/config/lpc1768_mbed.cfg is written in an unsupported language. File is not indexed.
0001 #
0002 # Config file for mbed LPC1768 board.
0003 #
0004
0005 include $(RTEMS_ROOT)/make/custom/default.cfg
0006
0007 RTEMS_CPU = arm
0008
0009 CPU_CFLAGS = -mthumb -mcpu=cortex-m3
0010
0011 CFLAGS_OPTIMIZE_V = -O2 -ggdb3
0012 CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
0013 LDFLAGS = -Wl,--gc-sections
0014
0015 BINEXT?=.bin
0016 # This defines the operations performed on the linked executable.
0017 # is currently required.
0018 define bsp-post-link
0019 $(OBJCOPY) -O binary --strip-all \
0020 $(basename $@)$(EXEEXT) $(basename $@)$(BINEXT)
0021 $(SIZE) $(basename $@)$(EXEEXT)
0022 endef