source: rtems/make/custom/p4600.cfg @ 1ea9c3f

4.104.114.84.95
Last change on this file since 1ea9c3f was 1ea9c3f, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/98 at 16:33:48

Purged references to STACK_CHECKER_REPORT_USAGE

  • Property mode set to 100644
File size: 3.0 KB
Line 
1#
2#  Config file for the algorithmics p4000 evaluation board with R4600 cpu
3#
4#  $Id$
5#
6
7
8include $(RTEMS_ROOT)/make/custom/default.cfg
9
10RTEMS_CPU=mips64orion
11RTEMS_CPU_MODEL=R4600
12
13# This is the actual bsp directory used during the build process.
14RTEMS_BSP_FAMILY=p4000
15
16CPU_CFLAGS=-mcpu=4600 -G0
17CCMIPS_CFLAGS_CPU=-cpu=r4600
18
19# Override default start file
20START_BASE=idt_csu
21
22CPU_DEFINES+=-DP4000 -DCPU_R4000 -DP3_DIAG -D_R4000 -D__mips=3
23
24# The p4600 and p4600 share the p4000 bsp.
25TARGET_ARCH=o-p4600
26RTEMS_BSP=p4000
27
28## Target compiler config file, if any
29CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg
30
31# This target does NOT support the KA9Q TCP/IP stack so ignore requests
32# to enable it.
33HAS_KA9Q=no
34
35#  This section makes the target dependent options file.
36
37#  NDEBUG (C library)
38#     if defined asserts do not generate code.  This is commonly used
39#     as a command line option.
40#
41#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
42#     do not pause between screens of output in the rtems tests
43#
44#  STACK_CHECKER_ON (RTEMS support code)
45#     If defined, stack bounds checking is enabled.
46#
47#  RTEMS_DEBUG (RTEMS)
48#     If defined, debug checks in RTEMS and support library code are enabled.
49#
50#  WORKSPACE_MB (p4000)
51#     Defines the size in Megabytes of the RTEMS Workspace.
52#
53#  HEAPSPACE_MB (p4000)
54#     Defines the size in Megabytes of the C Program Heap.
55
56define make-target-options
57        @echo "/* #define NDEBUG 1 */ "                     >>$@
58        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
59        @echo "/* #define STACK_CHECKER_ON  1 */"           >>$@
60        @echo "/* #define RTEMS_DEBUG  1 */"                >>$@
61        @echo "#define WORKSPACE_MB 2"                      >>$@
62        @echo "#define HEAPSPACE_MB 1"                      >>$@
63endef
64
65
66# optimize flag: typically -0, could use -O4 or -fast
67# -O4 is ok for RTEMS
68CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
69
70# The following are definitions of make-exe which will work using ld as
71# is currently required.  It is expected that as of gcc 2.8, the end user
72# will be able to override parts of the compilers specs and link using gcc.
73
74ifeq ($(RTEMS_USE_GCC272),yes)
75# This rule was used in 3.6.0
76#       $(CC) $(LDFLAGS) -nostdlib -o $(basename $@).exe \
77#           -T$(PROJECT_RELEASE)/lib/linkcmds $(LINK_FILES) $(LD_PATHS:%=-L %)
78
79define make-exe
80        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
81            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
82        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec1
83        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
84        $(RM) $(basename $@).srec1
85        $(NM) -n $(basename $@).exe > $(basename $@).num
86        $(SIZE) $(basename $@).exe
87endef
88else
89define make-exe
90        $(CC) $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).exe $(LINK_OBJS)
91        $(OBJCOPY) -O srec $(basename $@).exe $(basename $@).srec1
92        $(PACKHEX) < $(basename $@).srec1 > $(basename $@).srec
93        $(RM) $(basename $@).srec1
94        $(NM) -n $(basename $@).exe > $(basename $@).num
95        $(SIZE) $(basename $@).exe
96endef
97endif
98
99# Miscellaneous additions go here
100
Note: See TracBrowser for help on using the repository browser.