source: rtems/make/custom/psim.cfg @ effc2c4

Last change on this file since effc2c4 was effc2c4, checked in by Joel Sherrill <joel.sherrill@…>, on 04/03/00 at 14:44:39

Patch rtems-rc-4.5.0-6-cvs.diff from Ralf Corsepius <corsepiu@…>.
The patch contains:

  • build variants support
  • Reworked make-exe custom/*.cfg for all targets (Should be self-explanatory, may still be incomplete)
  • Several fixes to custom/*.cfgs related to setting debug flags
  • Fixes to some bsp_specs for BSPs which apparently have never been build with debugging before ;)
  • pc386.cfg fix attempts (cf. my mail from earlier today)
  • Updated ampolish (No need to run it, the patch contains the result from having applied it)

Known bugs/deficiencies related to this work:

  • "make [clean|distclean]" support is still incomplete (e.g. "make clean" does not delete all Depends-o-*)
  • Completely untested for linux/posix and hppa.
  • Build failures of i960 BSPs (make VARIANT=DEBUG) - I guess, they are not related to this patch.
  • Successfully tested for all sh, sparc, i386, ppc, m68k BSPs (make VARIANT=DEBUG)
  • make VARIANT=PROFILE not supported by all BSPs (I don't care :)
  • make VARIANT=DEBUG failures below tests/ for some BSPs (e.g. gensh1), because of the tests's binaries being too large to fit into the target memory layout.
  • Property mode set to 100644
File size: 3.8 KB
Line 
1#
2#  Config file for the PowerPC 60x simulator - psim
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=powerpc
10RTEMS_CPU_MODEL=ppc603e
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=psim
14
15#  This section makes the target dependent options file.
16
17#  NDEBUG (C library)
18#     if defined asserts do not generate code.  This is commonly used
19#     as a command line option.
20#
21#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
22#     do not pause between screens of output in the rtems tests
23#
24#  RTEMS_DEBUG (RTEMS)
25#     If defined, debug checks in RTEMS and support library code are enabled.
26#
27#  CONSOLE_USE_POLLED     (psim_bsp)
28#  CONSOLE_USE_INTERRUPTS (psim_bsp)
29#     The psim console driver has the structure to operate in either
30#     polled or interrupt mode.  However both modes only trap to the
31#     monitor currently.
32#
33#  PSIM_FAST_IDLE (psim_bsp)
34#     If defined, speed up the clock ticks while the idle task is running so
35#     time spent in the idle task is minimized.  This significantly reduces
36#     the wall time required to execute the RTEMS test suites.
37#
38#  PPC_VECTOR_FILE_BASE (PowerPC)
39#     This defines the base address of the exception table.
40#     NOTE: Vectors are actually at 0xFFF00000 but file starts at offset 0x0100
41#
42#  PPC_ABI (PowerPC)
43#     This defines the calling convention (Application Binary Interface)
44#     used in this configuration.  EABI is the only one supported.
45#
46#  PPC_ASM (PowerPC)
47#     This defines the assembly language format used in this configuration.
48#     ELF is the only one supported.
49#
50#  PPC_USE_SPRG (RTEMS PowerPC port)
51#     If defined, then the PowerPC specific code in RTEMS will use some
52#     of the special purpose registers to slightly optimize interrupt
53#     response time.  The use of these registers can conflict with
54#     other tools like debuggers.
55
56
57
58define make-target-options
59        @echo "/* #define NDEBUG 1 */ "                            >>$@
60        @echo "#define RTEMS_TEST_NO_PAUSE 1"                      >>$@
61        @echo "/* #define RTEMS_DEBUG  1 */"                       >>$@
62        @echo "#define CONSOLE_USE_INTERRUPTS 0"                   >>$@
63        @echo "#define CONSOLE_USE_POLLED !CONSOLE_USE_INTERRUPTS" >>$@
64        @echo "#define PSIM_FAST_IDLE 1"                           >>$@
65        @echo "#define PPC_VECTOR_FILE_BASE 0xFFF00100"            >>$@
66        @echo "#define PPC_ABI PPC_ABI_EABI"                       >>$@
67        @echo "#define PPC_ASM PPC_ASM_ELF"                        >>$@
68        @echo "#define PPC_USE_SPRG 1"                             >>$@
69endef
70
71#  This contains the compiler options necessary to select the CPU model
72#  and (hopefully) optimize for it.
73#
74CPU_CFLAGS = -mcpu=603
75#-ffunction-sections
76
77# optimize flag: typically -0, could use -O4 or -fast
78# -O4 is ok for RTEMS
79# NOTE: some level of -O may be actually required by inline assembler
80CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
81
82# The following is a linkcmds file which will work without using the
83# -specs system in gcc 2.8.
84#       $(LD) $(XLDFLAGS) -T $(LINKCMDS) \
85#         -o $@ -u atexit -u __vectors -u download_entry $(LINK_FILES)
86#       $(LD) $(XLDFLAGS) -Ttext 0x20000 \
87#         -o $@ -u atexit -u __vectors -u download_entry $(LINK_FILES)
88
89#       $(CC) -mmvme -mrtems -nostartfiles -mcpu=603 \
90#           -o $(basename $@).exe -L $(PROJECT_RELEASE)/lib \
91#            $(START_FILE) $(LINK_OBJS) \
92#            $(LD_LIBS) \
93#           -Wl,-\( -Wl,-lc -Wl,-lrtemsall -Wl,-lgcc -Wl,-\)
94ifeq ($(RTEMS_USE_GCC272),yes)
95define make-exe
96        $(CC) $(CFLAGS) -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
97        $(NM) -g -n $@ > $(basename $@).num
98        $(SIZE) $@
99endef
100else
101# -Wl,--gc-sections
102define make-exe
103        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe \
104            $(LINK_OBJS) $(LINK_LIBS)
105        $(NM) -g -n $@ > $(basename $@).num
106        $(SIZE) $@
107endef
108endif
109
110# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.