source: rtems/make/custom/rbtx4925.cfg @ 7c99007

4.104.114.84.95
Last change on this file since 7c99007 was 7c99007, checked in by Greg Menke <gregory.menke@…>, on 06/08/06 at 18:03:55

B.Robinson MIPS patch

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  Config file for the Toshiba RBTX4925 evaluation board with TX4925 cpu
3#
4#  rbtx4925.cfg,v 1.21 2002/06/14 17:31:20 joel Exp
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU_MODEL=tx4925
10
11# This is the actual bsp directory used during the build process.
12RTEMS_BSP_FAMILY=rbtx4925
13
14#  This contains the compiler options necessary to select the CPU model
15#  and (hopefully) optimize for it.
16CPU_CFLAGS = -mips3 -G0 -EL
17
18# optimize flag: typically -0, could use -O4 or -fast
19# -O4 is ok for RTEMS
20CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
21
22# The following are definitions of make-exe which will work using ld as
23# is currently required.  It is expected that as of gcc 2.8, the end user
24# will be able to override parts of the compilers specs and link using gcc.
25
26define make-exe
27        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
28            -o $@ -Xlinker -Map -Xlinker $(basename $@).map $(LINK_OBJS) $(LINK_LIBS)
29        $(OBJCOPY) -O srec $@ $(basename $@).srec1
30        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
31        $(RM) $(basename $@).srec1
32        $(NM) -n $@ > $(basename $@).num
33        $(SIZE) $@
34endef
35
36# Miscellaneous additions go here
37
Note: See TracBrowser for help on using the repository browser.