compiler sanity check

Originally committed as revision 5551 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Måns Rullgård 19 years ago
parent fac252f95b
commit 1a268accb5
  1. 14
      configure

14
configure vendored

@ -1033,6 +1033,20 @@ if test $tune != "generic"; then
esac esac
fi fi
# compiler sanity check
check_exec <<EOF
int main(){
return 0;
}
EOF
if test "$?" != 0; then
echo "$cc is unable to create an executable file."
if test -z "$cross_prefix" -a "$cross_compile" = no; then
echo "If $cc is a cross-compiler, use the --cross-compile option."
fi
die "C compiler test failed."
fi
# check for SIMD availability # check for SIMD availability
# AltiVec flags: The FSF version of GCC differs from the Apple version # AltiVec flags: The FSF version of GCC differs from the Apple version

Loading…
Cancel
Save