source: rtems/make/custom/rxgen960.cfg @ df49c60

4.104.114.84.95
Last change on this file since df49c60 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 2.1 KB
Line 
1#
2#  Config file for the generix RAMiX boards with i960
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=i960
10RTEMS_CPU_MODEL=i960rp
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=rxgen960
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it.
17#
18CPU_CFLAGS = -mrp -D__i960RP__ -D__i960_RP__
19
20# -pipe does not work in our local configuration of FSF GCC 2.6.0
21# configured on top of Intel Release 2.4.  We did this to replace
22# the GCC 2.4.5 shipped with Intel Release 2.4.
23
24# optimize flag: typically -0, could use -O4 or -fast
25# -O4 is ok for RTEMS
26CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures
27
28#  This section makes the target dependent options file.
29
30#  NDEBUG (C library)
31#     if defined asserts do not generate code.  This is commonly used
32#     as a command line option.
33#
34#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
35#     do not pause between screens of output in the rtems tests
36#
37#  NO_TABLE_MOVE (SPARC PORT)
38#     do not have a second trap table -- use the BSP's
39#
40#  RTEMS_DEBUG (RTEMS)
41#     If defined, debug checks in RTEMS and support library code are enabled.
42
43define make-target-options
44        @echo "/* #define NDEBUG 1 */ "                     >>$@
45        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
46        @echo "/* #define RTEMS_DEBUG  1 */"                >>$@
47endef
48
49# The following are definitions of make-exe which will work using ld as
50# is currently required.  It is expected that as of gcc 2.8, the end user
51# will be able to override parts of the compilers specs and link using gcc.
52
53# ifeq ($(RTEMS_USE_GCC272),yes)
54# ar x $(PROJECT_ROOT)/$(RTEMS_BSP_FAMILY)/lib/libbsp.a
55
56# LD_LIBS += $(PROJECT_RELEASE)/lib/libbsp.a
57
58ifeq ($(RTEMS_USE_GCC272),yes)
59define make-exe
60        @echo "rxgen960 does not support this gcc 2.7.2"
61        exit 1
62endef
63else
64define make-exe
65        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
66            $(LINK_OBJS) $(LINK_LIBS)
67        $(NM) -g -n $@ > $(basename $@).num
68        $(OBJCOPY) -oformat binary $@ $(basename $@).bin
69        $(SIZE) $@
70endef
71endif
72
73# Miscellaneous additions go here
74
Note: See TracBrowser for help on using the repository browser.