source: rtems/make/custom/i960sim.cfg @ 206a0b38

4.104.114.84.95
Last change on this file since 206a0b38 was 206a0b38, checked in by Joel Sherrill <joel.sherrill@…>, on 06/19/01 at 14:27:43

2001-06-19 Ralf Corsepius <corsepiu@…>

custom/Cygwin-posix.cfg: Remove -USTRICT_ANSI, make-target-options.
custom/FreeBSD-posix.cfg: Remove make-target-options.
custom/HPUX9-posix.cfg: Dito.
custom/Linux-posix.cfg: Dito.
custom/Solaris-posix.cfg: Dito.
custom/arm_bare_bsp.cfg: Dito.
custom/armulator.cfg: Dito.
custom/erc32.cfg: Remove CONSOLE_USE_POLLED, CONSOLE_USE_INTERRUPTS.
custom/i386ex.cfg: Remove make-target-options.
custom/i960sim.cfg: Remove make-target-options.
custom/mvme2307.cfg: Remove CONSOLE_USE_POLLED, CONSOLE_USE_INTERRUPTS.
custom/rxgen960.cfg: Remove make-target-options, cleanup comments.
custom/score603e.cfg: Remove CONSOLE_USE_POLLED, CONSOLE_USE_INTERRUPTS.
custom/vegaplus.cfg: Remove make-target-options.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  Config file for the i960 simulator in gdb
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=i960
10RTEMS_CPU_MODEL=i960ka
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=i960sim
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it.
17#
18CPU_CFLAGS=-mka -g
19
20# optimize flag: typically -0, could use -O4 or -fast
21# -O4 is ok for RTEMS
22# CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures
23CFLAGS_OPTIMIZE_V=-O0 -g
24
25# The following are definitions of make-exe which will work using ld as
26# is currently required.  It is expected that as of gcc 2.8, the end user
27# will be able to override parts of the compilers specs and link using gcc.
28
29ifeq ($(RTEMS_USE_GCC272),yes)
30
31define make-exe
32        $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
33             $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
34        $(NM) -g -n $(basename $@).exe > $(basename $@).num
35        $(SIZE) $(basename $@).exe
36endef
37
38else
39define make-exe
40        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
41            $(LDLIBS) -o $@ \
42            $(LINK_OBJS) $(LINK_LIBS)
43        $(NM) -g -n $@ > $(basename $@).num
44        $(SIZE) $@
45endef
46endif
47
48# Miscellaneous additions go here
49
Note: See TracBrowser for help on using the repository browser.