Browse Source

Use __clang_version__ when available

Originally committed as revision 24009 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
David Conrad 15 years ago
parent
commit
b67a8f49a4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      configure

+ 2
- 1
configure 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 elif $cc -v 2>&1 | grep -q clang; then
cc_type=clang cc_type=clang
cc_version=__VERSION__
$cc -dM -E $TMPC | grep -q __clang_version__ &&
cc_version=__clang_version__ || cc_version=__VERSION__
CC_DEPFLAGS='-MMD' CC_DEPFLAGS='-MMD'
AS_DEPFLAGS='-MMD' AS_DEPFLAGS='-MMD'
speed_cflags='-O3' speed_cflags='-O3'


Loading…
Cancel
Save