source: rtems/make/custom/psim.cfg @ 2caa006

4.104.114.84.95
Last change on this file since 2caa006 was 6a14ae56, checked in by Joel Sherrill <joel.sherrill@…>, on 01/19/99 at 20:24:56

Added comments to indicate what options are required to take advantage
of removal of unused function code found in newer binutils/egcs
snapshots. Early test with psim and hello.exe showed about a 13%
gain.

  • Property mode set to 100644
File size: 4.0 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# Define this to yes if this target supports multiprocessor environments.
83HAS_MP=no
84
85# This target does not support the TCP/IP stack so ignore requests
86# to enable it.
87HAS_NETWORKING=no
88
89# The following is a linkcmds file which will work without using the
90# -specs system in gcc 2.8.
91#       $(LD) $(XLDFLAGS) -T $(LINKCMDS) \
92#         -o $@ -u atexit -u __vectors -u download_entry $(LINK_FILES)
93#       $(LD) $(XLDFLAGS) -Ttext 0x20000 \
94#         -o $@ -u atexit -u __vectors -u download_entry $(LINK_FILES)
95
96#       $(CC) -mmvme -mrtems -nostartfiles -mcpu=603 \
97#           -o $(basename $@).exe -L $(PROJECT_RELEASE)/lib \
98#            $(START_FILE) $(LINK_OBJS) \
99#            $(LD_LIBS) \
100#           -Wl,-\( -Wl,-lc -Wl,-lrtemsall -Wl,-lgcc -Wl,-\)
101ifeq ($(RTEMS_USE_GCC272),yes)
102define make-exe
103        $(CC) $(CFLAGS) -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
104        $(NM) -g -n $@ > $(basename $@).num
105        $(SIZE) $@
106endef
107else
108# -Wl,--gc-sections
109define make-exe
110        $(CC) $(CFLAGS) -o $(basename $@).exe \
111            $(LINK_OBJS) $(LINK_LIBS)
112        $(NM) -g -n $@ > $(basename $@).num
113        $(SIZE) $@
114endef
115endif
116
117# Miscellaneous additions go here
118
119# No start file
120START_BASE=
Note: See TracBrowser for help on using the repository browser.