Commit d9cb28cd authored by mru's avatar mru

compiler sanity check


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5551 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bc43a8a7
......@@ -1033,6 +1033,20 @@ if test $tune != "generic"; then
esac
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
# AltiVec flags: The FSF version of GCC differs from the Apple version
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment