diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2000-04-25 07:41:28 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-04-25 07:41:28 +0000 |
commit | f7f8b18003c9e6ad814f8618ef88d7b6ff354b5a (patch) | |
tree | 5b26ff30922d1bbe824608c1b9126342817ad6e6 | |
parent | f4dad842c7acc7d43c968b41db69e687e4a2643c (diff) | |
download | gcc-f7f8b18003c9e6ad814f8618ef88d7b6ff354b5a.zip gcc-f7f8b18003c9e6ad814f8618ef88d7b6ff354b5a.tar.gz gcc-f7f8b18003c9e6ad814f8618ef88d7b6ff354b5a.tar.bz2 |
mkcheck.in: Report compiler version used for test.
2000-04-24 Loren J. Rittle <ljrittle@acm.org>
* mkcheck.in: Report compiler version used for test. Find
the built _G_config.h instead of any old installed version.
From-SVN: r33405
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rwxr-xr-x | libstdc++-v3/mkcheck.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 479eaa2..145d01e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,10 @@ 2000-04-24 Loren J. Rittle <ljrittle@acm.org> + * mkcheck.in: Report compiler version used for test. Find + the built _G_config.h instead of any old installed version. + +2000-04-24 Loren J. Rittle <ljrittle@acm.org> + * config/generic/ctype.cc (do_toupper): Remove dependence on non-portable/non-existent lookup table. (do_tolower): Same. diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index e78b1bb..df8c3fe 100755 --- a/libstdc++-v3/mkcheck.in +++ b/libstdc++-v3/mkcheck.in @@ -51,7 +51,7 @@ fi # INC_PATH == include path to new headers for use on gcc command-line if [ $WHICH != "1" ]; then - INC_PATH="-I$BUILD_DIR -I$SRC_DIR/@ctype_include_dir@ -I$SRC_DIR/@cpu_include_dir@ -I$SRC_DIR/std -I$SRC_DIR -I$SRC_DIR/libio" + INC_PATH="-I$BUILD_DIR -I$BUILD_DIR/libio -I$SRC_DIR/@ctype_include_dir@ -I$SRC_DIR/@cpu_include_dir@ -I$SRC_DIR/std -I$SRC_DIR -I$SRC_DIR/libio" elif [ $WHICH -eq 1 ]; then INC_PATH="" fi @@ -133,7 +133,7 @@ cp $SRC_DIR/testsuite/27_io/*.tst $TEST_DIR # Emit useful info about compiler and platform echo "host: $(uname -mrsv)" >> $RESULTS_FILE -echo "compiler: $(g++ --version)" >> $RESULTS_FILE +echo "compiler: $($CXX --version)" >> $RESULTS_FILE echo "compiler flags: $CXX_FLAG $ST_FLAG" >> $RESULTS_FILE echo "date: $(date +%Y%m%d)" >> $RESULTS_FILE echo "" >> $RESULTS_FILE |