source: rtems/make/custom/mvme162.cfg @ d6c83529

4.104.114.84.95
Last change on this file since d6c83529 was d6c83529, checked in by Joel Sherrill <joel.sherrill@…>, on 11/16/99 at 15:48:11

Patch rtems-rc-19991105-1.diff.gz from Ralf Corsepius
<corsepiu@…> which does the following:

This is the configuration cleanup patch:

Main changes:

  • TARGET_ARCH removed
  • target.cfg.in moved to c/make/target.cfg.in (Only configured once for all BSPs of a target)
  • BARE_XXX variables appended to bsp.cfg.in
  • autogen renamed to bootstrap
  • removed stray variables from make/custom/*.cfg

To apply:

cd <source-tree>
rm c/src/make/target.cfg.in
cp autogen bootstrap
mkdir c/make
cp make/target.cfg.in c/make/target.cfg.in
rm make/target.cfg.in
rm autogen
patch -p1 < rtems-rc-19991105-1.diff

  • Property mode set to 100644
File size: 2.8 KB
Line 
1#
2#  Config file for the mvme162 BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10
11ifeq ($(RTEMS_MVME162_MODEL),mvme162lx)
12
13RTEMS_CPU_MODEL=m68lc040
14
15else
16ifeq ($(RTEMS_MVME162_MODEL),)
17
18RTEMS_MVME162_MODEL=mvme162
19RTEMS_CPU_MODEL=m68040
20
21endif # mvme162   - mc68040
22endif # mvme162lx - mc68lc040
23
24# This is the actual bsp directory used during the build process.
25RTEMS_BSP_FAMILY=mvme162
26
27#  This contains the compiler options necessary to select the CPU model
28#  and (hopefully) optimize for it.
29#
30
31ifeq ($(RTEMS_CPU_MODEL),m68040)
32CPU_CFLAGS = -m68040
33else
34ifeq ($(RTEMS_CPU_MODEL),m68lc040)
35CPU_CFLAGS = -m68040 -msoft-float
36endif # mc68040
37endif # mc68lc040
38
39# optimize flag: typically -0, could use -O4 or -fast
40# -O4 is ok for RTEMS
41CFLAGS_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
58define 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 */"                >>$@
64endef
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
70ifeq ($(RTEMS_USE_GCC272),yes)
71
72ifeq ($(RTEMS_CPU_MODEL),m68lc040)
73# override default location of Standard C Library
74LIBC_LIBC=$(RTEMS_LIBC_DIR)/lib/msoft-float/libc.a
75LIBC_LIBM=$(RTEMS_LIBC_DIR)/lib/msoft-float/libm.a
76endif # mc68lc040
77
78define 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
87endef
88else
89define make-exe
90        $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_LD) \
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
97endef
98endif
99
100# Miscellaneous additions go here
101
102# BSP-specific tools
103SLOAD=$(PROJECT_TOOLS)/sload
Note: See TracBrowser for help on using the repository browser.