1 | # |
---|
2 | # Config file for the generix RAMiX boards with i960 |
---|
3 | # |
---|
4 | # $Id$ |
---|
5 | # |
---|
6 | |
---|
7 | include $(RTEMS_ROOT)/make/custom/default.cfg |
---|
8 | |
---|
9 | RTEMS_CPU=i960 |
---|
10 | RTEMS_CPU_MODEL=i960rp |
---|
11 | |
---|
12 | # This is the actual bsp directory used during the build process. |
---|
13 | RTEMS_BSP_FAMILY=rxgen960 |
---|
14 | |
---|
15 | # This contains the compiler options necessary to select the CPU model |
---|
16 | # and (hopefully) optimize for it. |
---|
17 | # |
---|
18 | CPU_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 |
---|
26 | CFLAGS_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 | |
---|
43 | define make-target-options |
---|
44 | @echo "/* #define NDEBUG 1 */ " >>$@ |
---|
45 | @echo "#define RTEMS_TEST_NO_PAUSE 1" >>$@ |
---|
46 | @echo "/* #define RTEMS_DEBUG 1 */" >>$@ |
---|
47 | endef |
---|
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 | |
---|
58 | ifeq ($(RTEMS_USE_GCC272),yes) |
---|
59 | define make-exe |
---|
60 | @echo "rxgen960 does not support this gcc 2.7.2" |
---|
61 | exit 1 |
---|
62 | endef |
---|
63 | else |
---|
64 | define 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) $@ |
---|
70 | endef |
---|
71 | endif |
---|
72 | |
---|
73 | # Miscellaneous additions go here |
---|
74 | |
---|
75 | START_BASE= |
---|