Changeset 227ae749 in rtems
- Timestamp:
- 01/22/01 14:03:44 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d6b1d73
- Parents:
- 7a55888
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r7a55888 r227ae749 1 2001-01-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and 4 simsh7045. 5 1 6 2001-01-03 Emmanuel Raguet <raguet@crf.canon.fr> 2 7 -
aclocal/bsp-alias.m4
r7a55888 r227ae749 25 25 leon1) $2=leon ;; # leon without fpu 26 26 leon2) $2=leon ;; # leon with fpu 27 simsh7032) $2=shsim ;; # SH7032 simulator 28 simsh7045) $2=shsim ;; # SH7045 simulator 27 29 *) $2=$1;; 28 30 esac] -
aclocal/check-bsps.m4
r7a55888 r227ae749 32 32 leon) rtems_bsp="$rtems_bsp leon1 leon2";; 33 33 sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";; 34 shsim) rtems_bsp="$rtems_bsp simsh7032 simsh7045";; 34 35 *) $1="[$]$1 $file";; 35 36 esac; -
make/ChangeLog
r7a55888 r227ae749 1 2001-01-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 3 * aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and 4 simsh7045. 5 * ChangeLog: Remove bogus 2001-01-22 entry. 1 6 2 7 2001-01-09 Joel Sherrill <joel@OARcorp.com> -
make/custom/shsim.cfg
r7a55888 r227ae749 5 5 # 6 6 7 HZ=20000000 8 7 9 include $(RTEMS_ROOT)/make/custom/default.cfg 8 10 9 11 RTEMS_CPU=sh 10 RTEMS_CPU_MODEL=sh 112 RTEMS_CPU_MODEL=sh7032 11 13 12 14 # This is the actual bsp directory used during the build process. 13 15 RTEMS_BSP_FAMILY=shsim 16 17 # BSP specific preprocessor flags. 18 # These should only be used in BSP dependent directories. 19 BSP_CPPFLAGS=-DHZ=$(HZ) 14 20 15 21 # This contains the compiler options necessary to select the CPU model … … 32 38 # will be able to override parts of the compilers specs and link using gcc. 33 39 34 ifeq ($(RTEMS_USE_GCC272),yes)35 36 define make-exe37 $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \38 $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group39 $(NM) -g -n $(basename $@).exe > $(basename $@).num40 $(SIZE) $(basename $@).exe41 endef42 43 else44 40 define make-exe 45 41 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \ … … 49 45 $(SIZE) $@ 50 46 endef 51 endif52 47 53 48 # Miscellaneous additions go here
Note: See TracChangeset
for help on using the changeset viewer.