summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mrm332/make/custom/mrm332.cfg
blob: 979f331399775fa4cce9c248bbba2fa8283f65ec (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
26
27
28
#
#  Config file for the mrm332 BSP
#

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

RTEMS_CPU=m68k

#  This contains the compiler options necessary to select the CPU model
#  and (hopefully) optimize for it. 
CPU_CFLAGS = -mcpu=cpu32

# using optimise for size due to small memory on target board.
CFLAGS_OPTIMIZE_V = -Os -g -fomit-frame-pointer

# FIXME: Disabled because linkcmds lacks proper KEEP() directives. See #2567.
# The following two lines enable compiling and linking on per element.
# CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
# LDFLAGS = -Wl,--gc-sections

define bsp-post-link
	$(OBJCOPY) -O srec $(basename $@)$(EXEEXT) $(basename $@).srec
	sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
	    $(PACKHEX) > $(basename $@)$(DOWNEXT)
	rm -f $(basename $@).srec
	$(default-bsp-post-link)
endef