diff options
author | David Conrad <lessen42@gmail.com> | 2009-10-22 21:19:13 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-10-22 21:19:13 +0000 |
commit | 06da6943724bf7df520f4ef08465350af2b4bc59 (patch) | |
tree | 0ecab2f6fff6022e731a9a6a97342a8491b8e65b | |
parent | b74d42ee330212dbfec8024e9490a5a7372497cc (diff) | |
download | ffmpeg-06da6943724bf7df520f4ef08465350af2b4bc59.tar.gz |
Add clang to detected compilers
Originally committed as revision 20350 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1590,6 +1590,11 @@ elif $cc -version 2>/dev/null | grep -q TMS470; then esac done } +elif $cc -v 2>&1 | grep -q clang; then + cc_type=clang + cc_version=__VERSION__ + CC_DEPFLAGS='-MMD' + AS_DEPFLAGS='-MMD' fi test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc" @@ -1615,6 +1620,10 @@ if test -n "$sysroot"; then add_cppflags -I"$sysinclude" add_ldflags --sysroot="$sysroot" ;; + clang) + add_cppflags -isysroot="$sysroot" + add_ldflags -isysroot="$sysroot" + ;; esac fi @@ -2464,6 +2473,8 @@ elif enabled ccc; then add_cflags -msg_disable unreachcode elif enabled gcc; then check_cflags -fno-tree-vectorize +elif enabled clang; then + check_cflags -Qunused-arguments fi if enabled gprof; then |