Use __clang_version__ when available

Originally committed as revision 24009 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
David Conrad 2010-07-02 21:04:39 +00:00
parent 8ee82f40ca
commit b67a8f49a4
1 changed files with 2 additions and 1 deletions

3
configure vendored
View File

@ -1761,7 +1761,8 @@ elif $cc -version 2>/dev/null | grep -q TMS470; then
}
elif $cc -v 2>&1 | grep -q clang; then
cc_type=clang
cc_version=__VERSION__
$cc -dM -E $TMPC | grep -q __clang_version__ &&
cc_version=__clang_version__ || cc_version=__VERSION__
CC_DEPFLAGS='-MMD'
AS_DEPFLAGS='-MMD'
speed_cflags='-O3'