提交 19b4c628 编写于 作者: M Måns Rullgård

Set default flag filters before compiler detection

This allows use of the add_*flags functions in the compiler detection
section.

Originally committed as revision 19428 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 b9349ff4
......@@ -1477,6 +1477,10 @@ EOF
die "Sanity test failed."
fi
filter_cflags=echo
filter_cppflags=echo
filter_asflags=echo
if $cc --version 2>/dev/null | grep -qi gcc; then
cc_type=gcc
elif $cc --version 2>/dev/null | grep -q Intel; then
......@@ -1508,10 +1512,6 @@ test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
: ${ld_default:=$cc}
set_default as dep_cc ld
: ${filter_cflags:=echo}
: ${filter_cppflags:=echo}
: ${filter_asflags:=echo}
add_cflags $extra_cflags
add_asflags $extra_cflags
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册