Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/contrib/regression/ChangeLog

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 2003-02-05  Release Manager
     12004-02-14  Release Manager
    22
    3         * GCC 3.2.2 Released.
     3        * GCC 3.3.3 Released.
    44
    5 2002-11-19  Release Manager
     52003-10-16  Release Manager
    66
    7         * GCC 3.2.1 Released.
     7        * GCC 3.3.2 Released.
    88
    9 2002-11-19  Release Manager
     92003-08-04  Release Manager
    1010
    11         * GCC 3.2.1 Released.
     11        * GCC 3.3.1 Released.
    1212
    13 2002-11-18  Release Manager
     132003-08-04  Release Manager
    1414
    15         * GCC 3.2.1 Released.
     15        * GCC 3.3.1 Released.
    1616
    17 2002-08-14  Release Manager
     172003-05-13  Release Manager
    1818
    19         * GCC 3.2 Released.
     19        * GCC 3.3 Released.
    2020
    21 2002-07-25  Release Manager
     212003-05-13  Release Manager
    2222
    23         * GCC 3.1.1 Released.
     23        * GCC 3.3 Released.
    2424
    25 2002-05-14  Release Manager
     252003-05-13  Release Manager
    2626
    27         * GCC 3.1 Released.
     27        * GCC 3.3 Released.
    2828
    29 2002-05-14  Release Manager
     292003-05-13  Release Manager
    3030
    31         * GCC 3.1 Released.
     31        * GCC 3.3 Released.
     32
     332002-10-22  Geoffrey Keating  <geoffk@apple.com>
     34
     35        * btest-gcc.sh: Add gdb.sum to TESTLOGS only when GDB testsuite is run.
     36
     372002-10-11  Geoffrey Keating  <geoffk@apple.com>
     38
     39        * objs-gcc.sh: Don't install GDB testsuite if GDB was not built.
     40        * btest-gcc.sh: Don't run GDB testsuite if it doesn't exist.
     41
     422002-10-09  Phil Edwards  <pme@gcc.gnu.org>
     43
     44        * btest-gcc.sh, objs-gcc.sh:  Update TARGET comments.
     45
     462002-10-09  Geoffrey Keating  <geoffk@apple.com>
     47
     48        * objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'.
     49
     502002-03-09  Geoffrey Keating  <geoffk@redhat.com>
     51
     52        * btest-gcc.sh: For crosses, assume newlib and GNU binutils.
     53        * site.exp: Correct mips-elf triplet.
    3254
    33552002-01-31  Geoffrey Keating  <geoffk@redhat.com>
  • branches/GNU/src/gcc/contrib/regression/btest-gcc.sh

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    2020# INPUT:
    2121# btest <target> <source> <prefix> <state> <build>
    22 # TARGET is the target triplet.  It should be the same one
    23 # as used in constructing PREFIX.
     22# TARGET is the target triplet.  It should be the same one as used in
     23# constructing PREFIX.  Or it can be the keyword 'native', indicating
     24# a target of whatever platform the script is running on.
    2425TARGET=$1
    2526# SOURCE is the directory containing the toplevel configure.
     
    99100gcc/testsuite/g++.sum
    100101gcc/testsuite/g77.sum
    101 gcc/testsuite/objc.sum
    102 test-gdb/gdb.sum"
     102gcc/testsuite/objc.sum"
    103103# $H_TARGET/libstdc++-v3/testsuite/libstdc++-v3.sum
    104104
    105105# Build.
    106106echo build > $RESULT
    107 $SOURCE/configure --prefix=$PREFIX --target=$H_TARGET || exit 1
    108107if [ $H_HOST = $H_TARGET ] ; then
     108  $SOURCE/configure --prefix=$PREFIX --target=$H_TARGET || exit 1
    109109  if ! make bootstrap ; then
    110110    [ -s gcc/.bad_compare ] || exit 1
     
    113113  fi
    114114else
     115  $SOURCE/configure --prefix=$PREFIX --target=$H_TARGET \
     116    --with-gnu-ld --with-gnu-as --with-newlib || exit 1
    115117  make || exit 1
    116118fi
     
    124126
    125127# Test the just-built GCC with the GDB testsuite.
    126 mkdir test-gdb || exit 1
    127 cd $GDB_TESTSUITE || exit 1
    128 for i in gdb.* ; do
    129   if [ -d $i ] ; then
    130     mkdir $BUILD/test-gdb/$i
    131   fi
    132 done
    133 cd $BUILD/test-gdb || exit 1
    134 echo "set host_alias $H_HOST" > site.exp
    135 echo "set host_triplet $H_HOST" >> site.exp
    136 echo "set target_alias $H_TARGET" >> site.exp
    137 echo "set target_triplet $H_REAL_TARGET" >> site.exp
    138 echo "set build_alias $H_BUILD" >> site.exp
    139 echo "set build_triplet $H_BUILD" >> site.exp
    140 echo "set srcdir $GDB_TESTSUITE" >> site.exp
    141 runtest --tool gdb
     128if [ -d $GDB_TESTSUITE ] ; then
     129  mkdir test-gdb || exit 1
     130  cd $GDB_TESTSUITE || exit 1
     131  for i in gdb.* ; do
     132    if [ -d $i ] ; then
     133      mkdir $BUILD/test-gdb/$i
     134    fi
     135  done
     136  cd $BUILD/test-gdb || exit 1
     137  echo "set host_alias $H_HOST" > site.exp
     138  echo "set host_triplet $H_HOST" >> site.exp
     139  echo "set target_alias $H_TARGET" >> site.exp
     140  echo "set target_triplet $H_REAL_TARGET" >> site.exp
     141  echo "set build_alias $H_BUILD" >> site.exp
     142  echo "set build_triplet $H_BUILD" >> site.exp
     143  echo "set srcdir $GDB_TESTSUITE" >> site.exp
     144  runtest --tool gdb
     145  TESTLOGS="$TESTLOGS test-gdb/gdb.sum"
     146fi
    142147
    143148# Sanity-check the testlogs.  They should contain at least one PASS.
  • branches/GNU/src/gcc/contrib/regression/objs-gcc.sh

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    2020# INPUT:
    2121# btest <target> <source> <prefix> <state> <build>
    22 # TARGET is the target triplet.  It should be the same one
    23 # as used in constructing PREFIX.
     22# TARGET is the target triplet.  It should be the same one as used in
     23# constructing PREFIX.  Or it can be the keyword 'native', indicating
     24# a target of whatever platform the script is running on.
    2425TARGET=$1
    2526# SOURCE is the directory containing the toplevel configure.
     
    105106  make all-gdb all-dejagnu all-ld || exit 1
    106107  make install-gdb install-dejagnu install-ld || exit 1
     108elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then
     109  make bootstrap || exit 1
     110  make install || exit 1
    107111else
    108112  make || exit 1
     
    110114fi
    111115
    112 mkdir -p $PREFIX/share/gdb-testsuite || exit 1
    113 cd $SOURCE/gdb/testsuite || exit 1
    114 find . -print | cpio -pdmu $PREFIX/share/gdb-testsuite || exit 1
    115 # selftest.exp requires keeping old sources around, which is impractical
    116 rm $PREFIX/share/gdb-testsuite/gdb.base/selftest.exp
    117 # these tests seem to be broken and randomly failing
    118 rm -r $PREFIX/share/gdb-testsuite/gdb.mi
     116if [ -x $PREFIX/bin/$TARGET-gdb ] ; then
     117  mkdir -p $PREFIX/share/gdb-testsuite || exit 1
     118  cd $SOURCE/gdb/testsuite || exit 1
     119  find . -print | cpio -pdmu $PREFIX/share/gdb-testsuite || exit 1
     120  # selftest.exp requires keeping old sources around, which is impractical
     121  rm $PREFIX/share/gdb-testsuite/gdb.base/selftest.exp
     122  # these tests seem to be broken and randomly failing
     123  rm -r $PREFIX/share/gdb-testsuite/gdb.mi
     124fi
    119125
    120126echo pass > $RESULT
  • branches/GNU/src/gcc/contrib/regression/site.exp

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    99#       }
    1010    }
    11     { "mips-elf" } {
     11    { "mips*-*-elf" } {
    1212        set target_list { "mips-sim" }
    1313    }
Note: See TracChangeset for help on using the changeset viewer.