Changeset 08330bf in rtems
- Timestamp:
- 07/27/00 01:04:11 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2d354ea6
- Parents:
- db9ae70
- Files:
-
- 72 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/ACKNOWLEDGEMENTS
rdb9ae70 r08330bf 160 160 of Canon CRF - Communication Dept for numerous submissions including 161 161 remote debugging on the i386 and PowerPC, port of RPC, port of the 162 GoAhead web server, BSP for the Motorola MCP750 PowerPC board, and163 numerous improvements to the i386 and PowerPC ports of RTEMS164 including a new enhanced interrupt management API that reduces165 interrupt latency while making it easier to support external interrupt166 controllers.162 GoAhead web server, port of RTEMS to the ARM architecture, 163 BSP for the Motorola MCP750 PowerPC board, and numerous improvements 164 to the i386 and PowerPC ports of RTEMS including a new enhanced 165 interrupt management API that reduces interrupt latency while making 166 it easier to support external interrupt controllers. 167 167 168 168 + Mark Bronson <mark@ramix.com> of RAMIX for submitting i960RP -
scripts/binutils/HISTORY
rdb9ae70 r08330bf 7 7 RPM Version binutils-2.10-1 8 8 =========================== 9 + Add initial support for the ARM. 9 10 + Adds support for the h8300. 10 11 -
scripts/binutils/Makefile.am
rdb9ae70 r08330bf 16 16 MKBINUTILSSPEC_DEPS = $(top_builddir)/mkbinutilspec binutils.spec.in \ 17 17 $(top_builddir)/setup.cache 18 19 arm-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS) 20 $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . arm-rtems 21 22 c4x-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS) 23 $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . c4x-rtems 18 24 19 25 h8300-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS) … … 50 56 $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems 51 57 52 RPM_SPECS_DATA = h8300-rtems-$(BINUTILSVERS).spec \ 58 RPM_SPECS_DATA = \ 59 arm-rtems-$(BINUTILSVERS).spec \ 60 c4x-rtems-$(BINUTILSVERS).spec \ 61 h8300-rtems-$(BINUTILSVERS).spec \ 53 62 hppa1.1-rtems-$(BINUTILSVERS).spec \ 54 63 i386-rtems-$(BINUTILSVERS).spec i960-rtems-$(BINUTILSVERS).spec \ -
scripts/buildall.in
rdb9ae70 r08330bf 70 70 # This is the full buildable set. 71 71 if [ "X${TARGETS}" = "X" ] ; then 72 TARGETS="i386-rtems i960-rtems m68k-rtems \ 72 # do not include c4x or hppa primary targets 73 # do not include sh-elf or i960-elf secondary targets 74 TARGETS="arm-rtems h8300-rtems i386-rtems i960-rtems m68k-rtems \ 73 75 mips64orion-rtems powerpc-rtems sh-rtems sparc-rtems" 74 76 fi -
scripts/gccnewlib/HISTORY
rdb9ae70 r08330bf 7 7 RPM Version gcc2.95.2newlib1.8.2-8 8 8 ================================== 9 + arm 10 - Add initial support. 11 + c4x 12 - Add initial support. 9 13 + h8300 10 14 - Add initial support. 15 - define CPU type in libfunc 11 16 + i386 12 17 - Build soft and HW floating point multilibs for i386 embedded targets. … … 16 21 - Fixes possible bug in gcc target where incorrect startup files specified. 17 22 18 gcc-2.95.2-rtems-200007 10.diff23 gcc-2.95.2-rtems-20000724.diff 19 24 - Add i386 embedded soft float multlibs (Joel) 20 25 - Define _SOFT_FLOAT on i960 when -msoft-float specified (Joel) -
scripts/gccnewlib/Makefile.am
rdb9ae70 r08330bf 31 31 gccnewlib_c_only.spec.in $(top_builddir)/setup.cache 32 32 33 arm-rtems-$(GCCNEWLIBVERS).spec: $(MKGCCNEWLIBSPEC_DEPS) 34 $(MKGCCNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . arm-rtems 35 36 c4x-rtems-$(GCCNEWLIBVERS).spec: $(MKGCCNEWLIB_C_ONLY_SPEC_DEPS) 37 $(MKGCCNEWLIBSPEC) $(C_ONLY_ARG) -cfg $(top_builddir)/setup.cache -o . c4x-rtems 38 33 39 h8300-rtems-$(GCCNEWLIBVERS).spec: $(MKGCCNEWLIB_C_ONLY_SPEC_DEPS) 34 40 $(MKGCCNEWLIBSPEC) $(C_ONLY_ARG) -cfg $(top_builddir)/setup.cache -o . h8300-rtems … … 45 51 m68k-rtems-$(GCCNEWLIBVERS).spec: $(MKGCCNEWLIBSPEC_DEPS) 46 52 $(MKGCCNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtems 47 48 m68k-rtemself-$(GCCNEWLIBVERS).spec: $(MKGCCNEWLIBSPEC_DEPS)49 $(MKGCCNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtemself50 53 51 54 mips64orion-rtems-$(GCCNEWLIBVERS).spec: $(MKGCCNEWLIBSPEC_DEPS) … … 64 67 $(MKGCCNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems 65 68 66 RPM_SPECS_DATA = h8300-rtems-$(GCCNEWLIBVERS).spec \ 69 RPM_SPECS_DATA = \ 70 arm-rtems-$(GCCNEWLIBVERS).spec \ 71 c4x-rtems-$(GCCNEWLIBVERS).spec \ 72 h8300-rtems-$(GCCNEWLIBVERS).spec \ 67 73 hppa1.1-rtems-$(GCCNEWLIBVERS).spec \ 68 74 i386-rtems-$(GCCNEWLIBVERS).spec i960-rtems-$(GCCNEWLIBVERS).spec \ 69 m68k-rtems-$(GCCNEWLIBVERS).spec m68k-rtemself-$(GCCNEWLIBVERS).spec\75 m68k-rtems-$(GCCNEWLIBVERS).spec \ 70 76 mips64orion-rtems-$(GCCNEWLIBVERS).spec \ 71 77 powerpc-rtems-$(GCCNEWLIBVERS).spec sh-rtems-$(GCCNEWLIBVERS).spec \ -
scripts/gdb/Makefile.am
rdb9ae70 r08330bf 15 15 MKGDBSPEC_DEPS = $(top_builddir)/mkgdbspec gdb.spec.in \ 16 16 $(top_builddir)/setup.cache 17 18 arm-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS) 19 $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . arm-rtems 20 21 c4x-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS) 22 $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . c4x-rtems 17 23 18 24 h8300-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS) … … 49 55 $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems 50 56 51 RPM_SPECS_DATA = h8300-rtems-$(GDBVERS).spec i386-rtems-$(GDBVERS).spec \ 52 hppa1.1-rtems-$(GDBVERS).spec i386-rtems-$(GDBVERS).spec \ 53 i960-rtems-$(GDBVERS).spec m68k-rtems-$(GDBVERS).spec \ 54 m68k-rtemself-$(GDBVERS).spec mips64orion-rtems-$(GDBVERS).spec \ 57 RPM_SPECS_DATA = \ 58 arm-rtems-$(GDBVERS).spec c4x-rtems-$(GDBVERS).spec \ 59 h8300-rtems-$(GDBVERS).spec hppa1.1-rtems-$(GDBVERS).spec \ 60 i386-rtems-$(GDBVERS).spec i960-rtems-$(GDBVERS).spec \ 61 m68k-rtems-$(GDBVERS).spec mips64orion-rtems-$(GDBVERS).spec \ 55 62 powerpc-rtems-$(GDBVERS).spec sh-rtems-$(GDBVERS).spec \ 56 63 sh-rtemself-$(GDBVERS).spec sparc-rtems-$(GDBVERS).spec 64 57 65 CLEANFILES += $(RPM_SPECS_DATA) 58 66 -
scripts/setup.def
rdb9ae70 r08330bf 5 5 # 6 6 binutils_version=2.10 7 binutils_patch_version=20000 6288 binutils_rpm_release= 17 binutils_patch_version=20000726 8 binutils_rpm_release=2 9 9 newlib_version=1.8.2 10 10 newlib_patch_version=20000606 11 11 gcc_version=2.95.2 12 gcc_patch_version=200007 1012 gcc_patch_version=20000724 13 13 gccnewlib_rpm_release=8 14 14 gdb_version=5.0 15 15 gdb_patch_version=20000627 16 16 gdb_rpm_release=1 17 rtems_version= rtems-4.5.0-beta3a17 rtems_version=ss-20000726 18 18 rtems_rpm_release=1 19 19 rpm_build_root=/tmp
Note: See TracChangeset
for help on using the changeset viewer.