summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--make/ChangeLog4
-rw-r--r--make/custom/gp32.cfg19
2 files changed, 15 insertions, 8 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index d19ef91af9..f2eeec8b21 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -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,
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