source: rtems/make/custom/efi68k.cfg @ 1ea9c3f

4.104.114.84.95
Last change on this file since 1ea9c3f was 1ea9c3f, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/98 at 16:33:48

Purged references to STACK_CHECKER_REPORT_USAGE

  • Property mode set to 100644
File size: 2.4 KB
Line 
1#
2#  Config file for the efi68k BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10RTEMS_CPU_MODEL=m68000
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=efi68k
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it.
17#
18CPU_CFLAGS = -m68000 -msoft-float
19
20# optimize flag: typically -0, could use -O4 or -fast
21# -O4 is ok for RTEMS
22CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
23
24# This target does NOT support the KA9Q TCP/IP stack so ignore requests
25# to enable it.
26HAS_KA9Q=no
27
28# Override default start file
29START_BASE=start68k
30
31#  This section makes the target dependent options file.
32
33#  NDEBUG (C library)
34#     if defined asserts do not generate code.  This is commonly used
35#     as a command line option.
36#
37#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
38#     do not pause between screens of output in the rtems tests
39#
40#  STACK_CHECKER_ON (RTEMS support code)
41#     If defined, stack bounds checking is enabled.
42#
43#  RTEMS_DEBUG (RTEMS)
44#     If defined, debug checks in RTEMS and support library code are enabled.
45
46define make-target-options
47        @echo "/* #define NDEBUG 1 */ "                     >>$@
48        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
49        @echo "/* #define STACK_CHECKER_ON  1 */"           >>$@
50        @echo "/* #define RTEMS_DEBUG  1 */"                >>$@
51endef
52
53# The following are definitions of make-exe which will work using ld as
54# is currently required.  It is expected that as of gcc 2.8, the end user
55# will be able to override parts of the compilers specs and link using gcc.
56
57ifeq ($(RTEMS_USE_GCC272),yes)
58define make-exe
59        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
60            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
61        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
62        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
63            $(PROJECT_TOOLS)/packhex > $(basename $@).exe
64        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
65        $(SIZE) $(basename $@).nxe
66endef
67else
68define make-exe
69        $(CC) $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).nxe $(LINK_OBJS)
70        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
71        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
72            $(PROJECT_TOOLS)/packhex > $(basename $@).exe
73        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
74        $(SIZE) $(basename $@).nxe
75endef
76endif
77
78# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.