From 00ed1c98610ca8d93a97085410647953630c0fb8 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 2 Jun 2005 13:47:22 +0000 Subject: 2005-06-01 Philippe Simons * custom/gp32.cfg: Add make-cxx-exe. --- make/custom/gp32.cfg | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'make/custom/gp32.cfg') diff --git a/make/custom/gp32.cfg b/make/custom/gp32.cfg index 2932c23fc7..bb3cb16b39 100644 --- a/make/custom/gp32.cfg +++ b/make/custom/gp32.cfg @@ -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 -- cgit v1.2.3