diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2008-12-20 22:32:30 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2008-12-20 22:32:30 +0000 |
commit | 66f911126d5e6a708064d4e0108ca72b978af31c (patch) | |
tree | f81bb4ce174d7277050ce71d55fd8046fa7e12ed | |
parent | fb3e178a78e0cfef9146dc17beb69ae53ed64616 (diff) | |
download | gcc-66f911126d5e6a708064d4e0108ca72b978af31c.zip gcc-66f911126d5e6a708064d4e0108ca72b978af31c.tar.gz gcc-66f911126d5e6a708064d4e0108ca72b978af31c.tar.bz2 |
re PR target/37610 (FAIL: g++.dg/eh/pr29166.C execution test)
PR target/37610
* configure.ac (gcc_cv_as_cfi_advance_working): Fall back to 'no'
if readelf is nowhere to be found.
* configure: Regenerate.
From-SVN: r142850
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.ac | 3 |
3 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9b98585..d6613b8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2008-12-20 Eric Botcazou <ebotcazou@adacore.com> + + PR target/37610 + * configure.ac (gcc_cv_as_cfi_advance_working): Fall back to 'no' + if readelf is nowhere to be found. + * configure: Regenerate. + 2008-12-19 Andrew Haley <aph@redhat.com> * builtins.c, tree-ssa-loop-ivopts.c, fixed-value.c: diff --git a/gcc/configure b/gcc/configure index 09547c9..451c360 100755 --- a/gcc/configure +++ b/gcc/configure @@ -21628,7 +21628,8 @@ echo "$as_me:$LINENO: result: $gcc_cv_as_cfi_advance_working" >&5 echo "${ECHO_T}$gcc_cv_as_cfi_advance_working" >&6 else - gcc_cv_as_cfi_advance_working=yes + # no readelf, err on the side of caution + gcc_cv_as_cfi_advance_working=no fi cat >>confdefs.h <<_ACEOF diff --git a/gcc/configure.ac b/gcc/configure.ac index 0ec9aa8..c067770 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2278,7 +2278,8 @@ fi changequote([,])dnl ]) else - gcc_cv_as_cfi_advance_working=yes + # no readelf, err on the side of caution + gcc_cv_as_cfi_advance_working=no fi AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE, [`if test $gcc_cv_as_cfi_directive = yes \ |