OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [make/] [custom/] [mvme162.cfg] - Blame information for rev 481

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
#
2
#  Config file for the mvme162 BSP
3
#
4
#  $Id: mvme162.cfg,v 1.2 2001-09-27 12:02:52 chris Exp $
5
#
6
 
7
include $(RTEMS_ROOT)/make/custom/default.cfg
8
 
9
RTEMS_CPU=m68k
10
 
11
ifeq ($(RTEMS_MVME162_MODEL),mvme162lx)
12
 
13
RTEMS_CPU_MODEL=m68lc040
14
 
15
else
16
ifeq ($(RTEMS_MVME162_MODEL),)
17
 
18
RTEMS_MVME162_MODEL=mvme162
19
RTEMS_CPU_MODEL=m68040
20
 
21
endif # mvme162   - mc68040
22
endif # mvme162lx - mc68lc040
23
 
24
# This is the actual bsp directory used during the build process.
25
RTEMS_BSP_FAMILY=mvme162
26
 
27
#  This contains the compiler options necessary to select the CPU model
28
#  and (hopefully) optimize for it.
29
#
30
 
31
ifeq ($(RTEMS_CPU_MODEL),m68040)
32
CPU_CFLAGS = -m68040
33
else
34
ifeq ($(RTEMS_CPU_MODEL),m68lc040)
35
CPU_CFLAGS = -m68040 -msoft-float
36
endif # mc68040
37
endif # mc68lc040
38
 
39
# optimize flag: typically -0, could use -O4 or -fast
40
# -O4 is ok for RTEMS
41
CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
42
 
43
#  This section makes the target dependent options file.
44
 
45
#  NDEBUG (C library)
46
#     if defined asserts do not generate code.  This is commonly used
47
#     as a command line option.
48
#
49
#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
50
#     do not pause between screens of output in the rtems tests
51
#
52
#  NO_TABLE_MOVE (SPARC PORT)
53
#     do not have a second trap table -- use the BSP's
54
#
55
#  RTEMS_DEBUG (RTEMS)
56
#     If defined, debug checks in RTEMS and support library code are enabled.
57
 
58
define make-target-options
59
        @echo "#undef $(RTEMS_MVME162_MODEL)"               >>$@
60
        @echo "#define $(RTEMS_MVME162_MODEL)"              >>$@
61
        @echo "/* #define NDEBUG 1 */ "                     >>$@
62
        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
63
        @echo "/* #define RTEMS_DEBUG  1 */"                >>$@
64
endef
65
 
66
# The following are definitions of make-exe which will work using ld as
67
# is currently required.  It is expected that as of gcc 2.8, the end user
68
# will be able to override parts of the compilers specs and link using gcc.
69
 
70
ifeq ($(RTEMS_USE_GCC272),yes)
71
 
72
ifeq ($(RTEMS_CPU_MODEL),m68lc040)
73
# override default location of Standard C Library
74
LIBC_LIBC=$(RTEMS_LIBC_DIR)/lib/msoft-float/libc.a
75
LIBC_LIBM=$(RTEMS_LIBC_DIR)/lib/msoft-float/libm.a
76
endif # mc68lc040
77
 
78
define make-exe
79
        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
80
            $(START_FILE) $(LINK_OBJS) \
81
            --start-group $(LINK_LIBS) --end-group
82
        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
83
        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
84
            $(PACKHEX) > $(basename $@).exe
85
        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
86
        $(SIZE) $(basename $@).nxe
87
endef
88
else
89
define make-exe
90
        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
91
            -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
92
        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
93
        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
94
            $(PACKHEX) > $(basename $@).exe
95
        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
96
        $(SIZE) $(basename $@).nxe
97
endef
98
endif
99
 
100
# Miscellaneous additions go here
101
 
102
# BSP-specific tools
103
SLOAD=$(PROJECT_TOOLS)/sload

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.