Thank you for your response.
I am trying to build isl 0.24.
I have tried both the pre-build configure and one build with GNU Autoconf 2.71.
I have attached the config.log.
In the configure script, the following code causes the error:
if test "$cross_compiling_build" = maybe; then
cross_compiling_build=yes
else
{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot run C compiled programs.
If you meant to cross compile, use \`--build'.
See \`config.log' for more details" "$LINENO" 5; }
fi
The reason this code causes an error is because in m4/ax_prog_cc_for_build.m4, cross_compiling_build is set to no and never changed.
Changing the initialization to cross_compiling_build=maybe seems to allow a correct build.
-Marcus