Warning, /bsps/arm/tms570/config/tms570ls3137.inc is written in an unsupported language. File is not indexed.
0001 #
0002 # Config file for TMS570LS3137 board.
0003 #
0004
0005 include $(RTEMS_ROOT)/make/custom/default.cfg
0006
0007 RTEMS_CPU = arm
0008
0009 CPU_CFLAGS = -march=armv7-r -mthumb -mbig-endian
0010 CPU_CFLAGS += -mfpu=vfpv3-d16 -mfloat-abi=hard
0011
0012 CFLAGS_OPTIMIZE_V = -O2 -ggdb
0013 CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
0014
0015 LDFLAGS = -Wl,--gc-sections
0016
0017 BINEXT?=.bin
0018
0019 # This defines the operations performed on the linked executable.
0020 # is currently required.
0021 define bsp-post-link
0022 $(OBJCOPY) -O binary --strip-all \
0023 $(basename $@)$(EXEEXT) $(basename $@)$(BINEXT)
0024 $(SIZE) $(basename $@)$(EXEEXT)
0025 endef