summaryrefslogtreecommitdiffstats
path: root/make/custom
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-06-02 13:47:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-06-02 13:47:22 +0000
commit00ed1c98610ca8d93a97085410647953630c0fb8 (patch)
treeb6306c624f0277ca2152ce6f3f92802be025967e /make/custom
parent2005-06-01 Philippe Simons <loki_666@fastmail.fm> (diff)
downloadrtems-00ed1c98610ca8d93a97085410647953630c0fb8.tar.bz2
2005-06-01 Philippe Simons <loki_666@fastmail.fm>
* custom/gp32.cfg: Add make-cxx-exe.
Diffstat (limited to 'make/custom')
-rw-r--r--make/custom/gp32.cfg19
1 files changed, 11 insertions, 8 deletions
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