summaryrefslogtreecommitdiffstats
path: root/make/custom/gp32.cfg
diff options
context:
space:
mode:
authorJay Monkman <jtm@smoothsmoothie.com>2005-03-11 07:28:54 +0000
committerJay Monkman <jtm@smoothsmoothie.com>2005-03-11 07:28:54 +0000
commitea9e29e3ffe0f0f38bcfce9745c24c8a2d531128 (patch)
tree8408dc2e86b2d1899e0eb57ad349b08b82a6ae48 /make/custom/gp32.cfg
parent2005-03-11 Philippe Simons <loki_666@fastmail.fm> (diff)
downloadrtems-ea9e29e3ffe0f0f38bcfce9745c24c8a2d531128.tar.bz2
2005-03-11 Philippe Simons <loki_666@fastmail.fm>
* custom/gp32.cfg: New file.
Diffstat (limited to '')
-rw-r--r--make/custom/gp32.cfg39
1 files changed, 39 insertions, 0 deletions
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