From: hjl Date: Wed, 7 Oct 2015 13:45:21 +0000 (+0000) Subject: Check $READELF_FOR_TARGET for readelf in configure X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5b80c2522869e69f09312484bb43a844a8ea819;p=thirdparty%2Fgcc.git Check $READELF_FOR_TARGET for readelf in configure Similar to as, ld, nm and objdump, gcc configure should check $READELF_FOR_TARGET for readelf. PR bootstrap/67385 * configure.ac (gcc_cv_readelf): Check $READELF_FOR_TARGET. * configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228567 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23560024d0f4..7d578791196f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-10-07 H.J. Lu + + PR bootstrap/67385 + * configure.ac (gcc_cv_readelf): Check $READELF_FOR_TARGET. + * configure: Regenerated. + 2015-10-07 H.J. Lu PR target/67850 diff --git a/gcc/configure b/gcc/configure index f6ae99062c50..6b160ae44a21 100755 --- a/gcc/configure +++ b/gcc/configure @@ -22271,9 +22271,11 @@ if test -f $gcc_cv_binutils_srcdir/configure.ac \ gcc_cv_readelf=../binutils/readelf$build_exeext elif test -x readelf$build_exeext; then gcc_cv_readelf=./readelf$build_exeext +elif ( set dummy $READELF_FOR_TARGET; test -x $2 ); then + gcc_cv_readelf="$READELF_FOR_TARGET" else - # Extract the first word of "readelf", so it can be a program name with args. -set dummy readelf; ac_word=$2 + # Extract the first word of "$READELF_FOR_TARGET", so it can be a program name with args. +set dummy $READELF_FOR_TARGET; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_gcc_cv_readelf+set}" = set; then : diff --git a/gcc/configure.ac b/gcc/configure.ac index 88fb9bf178c8..be721e6db3b0 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2403,8 +2403,10 @@ if test -f $gcc_cv_binutils_srcdir/configure.ac \ gcc_cv_readelf=../binutils/readelf$build_exeext elif test -x readelf$build_exeext; then gcc_cv_readelf=./readelf$build_exeext +elif ( set dummy $READELF_FOR_TARGET; test -x $[2] ); then + gcc_cv_readelf="$READELF_FOR_TARGET" else - AC_PATH_PROG(gcc_cv_readelf, readelf) + AC_PATH_PROG(gcc_cv_readelf, $READELF_FOR_TARGET) fi]) AC_MSG_CHECKING(what readelf to use)