summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/tms570/make/custom/tms570ls3137.inc
blob: 76d5ccd2ba9a0df42fcfcd58413e33a8a4a38ba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# Config file for TMS570LS3137 board.
#

include $(RTEMS_ROOT)/make/custom/default.cfg

RTEMS_CPU = arm

CPU_CFLAGS  = -march=armv7-r -mthumb -mbig-endian
CPU_CFLAGS += -mfpu=vfpv3-d16 -mfloat-abi=hard

CFLAGS_OPTIMIZE_V = -O2 -ggdb
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