From ea9e29e3ffe0f0f38bcfce9745c24c8a2d531128 Mon Sep 17 00:00:00 2001 From: Jay Monkman Date: Fri, 11 Mar 2005 07:28:54 +0000 Subject: 2005-03-11 Philippe Simons * custom/gp32.cfg: New file. --- make/custom/gp32.cfg | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 make/custom/gp32.cfg (limited to 'make/custom') diff --git a/make/custom/gp32.cfg b/make/custom/gp32.cfg new file mode 100644 index 0000000000..2932c23fc7 --- /dev/null +++ b/make/custom/gp32.cfg @@ -0,0 +1,39 @@ +# +# Config file for ARM GP32 +# +# gp32.cfg,v 1.0.0.0 2005/01/02 07:46:06 loki Exp +# + +include $(RTEMS_ROOT)/make/custom/default.cfg + +RTEMS_CPU=arm +RTEMS_CPU_MODEL=s3c2400 + +# This is the actual bsp directory used during the build process. +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 + +# 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 + +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 + $(NM) -g -n $(basename $@).exe > $(basename $@).num + $(SIZE) $(basename $@).exe +endef + +# Miscellaneous additions go here -- cgit v1.2.3