Updated patch versions.

This commit is contained in:
Joel Sherrill
2000-06-02 20:13:51 +00:00
parent fd16f5b587
commit 19f4540ee5
4 changed files with 22 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ TEMPLATES =
noinst_DATA = setup.def $(TEMPLATES)
EXTRA_DIST = $(noinst_DATA) $(noinst_SCRIPTS)
EXTRA_DIST = config.sub config.guess $(noinst_DATA) $(noinst_SCRIPTS)
CONFIGURE_DEPENDENCIES = setup.cache
setup.cache: setup.def

View File

@@ -13,13 +13,26 @@ usage()
{
echo "$0 [options] <target_alias>"
echo " options:"
echo " -b -- build binutils"
echo " -g -- build gcc/newlib"
echo " -d -- build gdb"
echo " -t -- enable test/debug mode"
echo " -cfg <setup.cache>"
echo " -o <rpm-spec-dir>"
exit 1 ;
}
testing=no
do_binutils=no
do_gccnewlib=no
do_gdb=no
while test $# -ge 1; do
case $1 in
-b) do_binutils=yes ; shift;;
-g) do_gccnewlib=yes ; shift;;
-d) do_gdb=yes ; shift;;
-t) do_test=yes ; shift;;
-cfg)
test $# -ge 2 || usage
shift
@@ -43,6 +56,12 @@ while test $# -ge 1; do
esac
done
if test ${do_binutils} = no -a ${do_gccnewlib} = no -a ${do_gdb} = no ; then
echo "You must request building binutils, gcc/newlib, or gdb."
usage
fi
# This is the full list .. hppa1.1 does not build now.
#ALL_TARGETS="hppa1.1-rtems i386-rtems i960-rtems m68k-rtems \
# m68k-rtemself mips64orion-rtems \
@@ -63,11 +82,6 @@ newlib=${newlib_version}
# also use binutils_rpm_release
buildroot=/tmp
testing=no
do_binutils=yes
do_gccnewlib=yes
do_gdb=yes
#
# Now get started
#

View File

@@ -1,7 +1,7 @@
## $Id$
AC_INIT(binutils)
AM_INIT_AUTOMAKE(rtems-scripts,20000526-0,no)
AM_INIT_AUTOMAKE(rtems-scripts,20000531-0,no)
AC_EXEEXT

View File

@@ -9,7 +9,7 @@ binutils_rpm_release=1
newlib_version=1.8.2
newlib_patch_version=20000525
gcc_version=2.95.2
gcc_patch_version=20000525
gcc_patch_version=20000531
gccnewlib_rpm_release=7
gdb_version=4.18
gdb_patch_version=20000524