2005-06-01 Philippe Simons <loki_666@fastmail.fm>

* custom/gp32.cfg: Add make-cxx-exe.
This commit is contained in:
Joel Sherrill
2005-06-02 13:47:22 +00:00
parent b2a4e861dc
commit 00ed1c9861
2 changed files with 15 additions and 8 deletions

View File

@@ -1,3 +1,7 @@
2005-06-01 Philippe Simons <loki_666@fastmail.fm>
* custom/gp32.cfg: Add make-cxx-exe.
2005-05-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* custom/mbx860_005b.cfg, custom/mcp750.cfg, custom/mtx603e.cfg,

View File

@@ -15,23 +15,26 @@ RTEMS_BSP_FAMILY=gp32
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary=8
CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary=32 -O3
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
# NOTE2: some level of -O may be actually required by inline assembler (at least
# -O2 so far.
CFLAGS_OPTIMIZE_V=-O3
#CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align
CFLAGS_OPTIMIZE_V=
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary \
--only-section=.text \
--only-section=.data \
--only-section=.rodata \
--strip-unneeded $(basename $@).exe $(basename $@).gxb
$(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe
endef
define make-cxx-exe
$(LINK.cc) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb
$(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe
endef