On Mon, Jan 25, 2010 at 12:58 PM, Paolo Bonzini <bonz...@gnu.org> wrote:
>
>>   This probably is a new version of PR41418 then.  We have the problem
>> that
>> fortran is turned on in --enable-languages, so libgomp configure expects
>> the
>> fortran compiler to be available.
>
> Does this fix it for you?
>
> Index: configure.ac
> ===================================================================
> --- configure.ac        (revision 155240)
> +++ configure.ac        (working copy)
> @@ -146,7 +146,11 @@ case `echo $GFORTRAN` in
>   -* | no* )
>     FC=no ;;
>   *)
> -    FC="$GFORTRAN" ;;
> +    if test -x "$GFORTRAN"; then
> +      FC="$GFORTRAN"
> +    else
> +      FC=no
> +    fi ;;
>  esac
>  AC_PROG_FC(gfortran)
>  FCFLAGS="$FCFLAGS -Wall"
>
> (untested)
>
> Paolo
>

This caused:

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42872


-- 
H.J.

Reply via email to