summaryrefslogtreecommitdiffstats
path: root/make/custom/gba.cfg
blob: 56d0c783b9e6f6467e2bef4ca06ee8f64a26acf4 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
#  Config file for Gameboy Advance ARM --
#
#  $Id$
#

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

RTEMS_CPU=arm
RTEMS_CPU_MODEL=arm7tdmi

# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=gba

#  This contains the compiler options necessary to select the CPU model
#  and (hopefully) optimize for it.
#
#CPU_CFLAGS = -mcpu=$(RTEMS_CPU_MODEL) -mthumb -mthumb-interwork -msoft-float -mstructure-size-boundary=8
CPU_CFLAGS = -mcpu=$(RTEMS_CPU_MODEL) -msoft-float -mstructure-size-boundary=8

# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2

define make-exe
	$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
	    -Wl,-Map,$(basename $@).map -o $(basename $@).elf \
	    $(LINK_OBJS) $(LINK_LIBS)
	$(OBJCOPY) -O binary  $(basename $@).elf $@
	$(OBJCOPY) -O binary --remove-section=.comment \
	    --remove-section=.note --strip-unneeded \
	    $(basename $@).elf $(basename $@).gba
	$(NM) -g -n $(basename $@).elf > $(basename $@).num
	$(SIZE) $(basename $@).elf
endef

define make-cxx-exe
	$(LINK.cc) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) \
	    -Wl,-Map,$(basename $@).map -o $(basename $@).elf \
	    $(LINK_OBJS) $(LINK_LIBS)
	$(OBJCOPY) -O binary  $(basename $@).elf $@
	$(OBJCOPY) -O binary --remove-section=.comment \
	    --remove-section=.note --strip-unneeded  \
	    $(basename $@).elf $(basename $@).gba
	$(NM) -g -n $(basename $@).elf > $(basename $@).num
	$(SIZE) $(basename $@).elf
endef

# Miscellaneous additions go here