diff options
author | Steve Ellcey <sje@cup.hp.com> | 2009-06-26 17:28:40 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2009-06-26 17:28:40 +0000 |
commit | f2689b094a6670183e5db4322e8da460262512b9 (patch) | |
tree | 210f560d22922a0b6794af3ca3fc931fcdbca3e2 /configure.ac | |
parent | f62c0ba4a7b654ba89d3d09c88116c8049600769 (diff) | |
download | gcc-f2689b094a6670183e5db4322e8da460262512b9.zip gcc-f2689b094a6670183e5db4322e8da460262512b9.tar.gz gcc-f2689b094a6670183e5db4322e8da460262512b9.tar.bz2 |
re PR bootstrap/40338 (bootstrap comparision fails on 32 bit PA when comparing libgcc objects)
2009-06-26 Steve Ellcey <sje@cup.hp.com>
PR bootstrap/40338
* configure.ac (comparestring): Create new variable.
* Makefile.tpl (comparestring): Use to skip some comparisions.
* configure: Regenerate.
* Makefile.in: Regenerate.
From-SVN: r148978
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4a74532..e0bb10c 100644 --- a/configure.ac +++ b/configure.ac @@ -3132,4 +3132,13 @@ AC_SUBST(docdir) AC_SUBST(pdfdir) AC_SUBST(htmldir) +# Specify what files to not compare during bootstrap. + +compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/*" +case "$target" in + hppa*64*-*-hpux*) ;; + hppa*-*-hpux*) compare_exclusions="gcc/cc*-checksum\$(objext) | */libgcc/lib2funcs* | gcc/ada/*tools/*" ;; +esac +AC_SUBST(compare_exclusions) + AC_OUTPUT(Makefile) |