source: rtems/make/custom/idp.cfg @ ce39123

4.104.114.84.95
Last change on this file since ce39123 was ce39123, checked in by Joel Sherrill <joel.sherrill@…>, on 07/13/00 at 14:53:41

Removed NDEBUG as a per BSP option.

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[bffb938]1#
2#  Config file for the IDP BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10RTEMS_CPU_MODEL=m68ec040
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=idp
14
15#  This section makes the target dependent options file.
16
17#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
18#     do not pause between screens of output in the rtems tests
19#
20
21define make-target-options
22        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
23endef
24
25#  This contains the compiler options necessary to select the CPU model
26#  and (hopefully) optimize for it.
27#
28CPU_CFLAGS = -msoft-float
29
30# optimize flag: typically -0, could use -O4 or -fast
31# -O4 is ok for RTEMS
32CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
33
34# The following are definitions of make-exe which will work using ld as
35# is currently required.  It is expected that as of gcc 2.8, the end user
36# will be able to override parts of the compilers specs and link using gcc.
37
38ifeq ($(RTEMS_USE_GCC272),yes)
39
40# override default location of Standard C Library
41LIBC_LIBC=$(RTEMS_LIBC_DIR)/lib/msoft-float/libc.a
42LIBC_LIBM=$(RTEMS_LIBC_DIR)/lib/msoft-float/libm.a
43
44define make-exe
45        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
46            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
47        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
48        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
[011677f]49            $(PACKHEX) > $(basename $@).exe
[bffb938]50        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
51        $(SIZE) $(basename $@).nxe
52endef
53else
54define make-exe
[df49c60]55        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
[98100d2]56            $(LINK_OBJS) $(LINK_LIBS)
[bffb938]57        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
58        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
[011677f]59            $(PACKHEX) > $(basename $@).exe
[bffb938]60        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
61        $(SIZE) $(basename $@).nxe
62endef
63endif
64
65# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.