source: rtems/make/custom/psim.cfg @ 28cc172

4.104.114.84.95
Last change on this file since 28cc172 was 28cc172, checked in by Joel Sherrill <joel.sherrill@…>, on 11/22/99 at 14:28:36

Removed need for START_BASE.

  • 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        $(CC) $(CPPFLAGS) $(CFLAGS) -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.