1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-03 13:41:49 +00:00

travis: use clang for ffmpeg/libav compilation

I overlooked the fact that the ffmpeg/libav build system only supports `--cc`
and completly ignores $CC. Hopefully this makes the build times a little
faster.

Fixes #332
This commit is contained in:
Stefano Pigozzi 2013-11-06 20:56:28 +01:00
parent ce72aaae7b
commit 057c2e25b0

View File

@ -72,7 +72,7 @@ class Libav < TravisDepsBuilder
end
def configure
[super, "--disable-doc"].join(" ")
[super, "--disable-doc", "--cc=#{ENV['CC']}"].join(" ")
end
end