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> 2005-05-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* custom/mbx860_005b.cfg, custom/mcp750.cfg, custom/mtx603e.cfg, * 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 # This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it. # 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 # optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS # -O4 is ok for RTEMS
# NOTE2: some level of -O may be actually required by inline assembler (at least # NOTE2: some level of -O may be actually required by inline assembler (at least
# -O2 so far. # -O2 so far.
CFLAGS_OPTIMIZE_V=-O3 CFLAGS_OPTIMIZE_V=
#CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align
define make-exe define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
$(LINK_OBJS) $(LINK_LIBS) $(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary \ $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb
--only-section=.text \ $(NM) -g -n $(basename $@).exe > $(basename $@).num
--only-section=.data \ $(SIZE) $(basename $@).exe
--only-section=.rodata \ endef
--strip-unneeded $(basename $@).exe $(basename $@).gxb
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 $(NM) -g -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe $(SIZE) $(basename $@).exe
endef endef