Commit 68485d1f authored by Mans Rullgard's avatar Mans Rullgard

configure: initialise all flag filters at the same place

This is more consistent, and doing it earlier is harmless.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 64933b6c
...@@ -1708,6 +1708,8 @@ LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"' ...@@ -1708,6 +1708,8 @@ LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)' SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)' SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
asflags_filter=echo
cflags_filter=echo
ldflags_filter=echo ldflags_filter=echo
AS_O='-o $@' AS_O='-o $@'
...@@ -1949,9 +1951,6 @@ EOF ...@@ -1949,9 +1951,6 @@ EOF
die "Sanity test failed." die "Sanity test failed."
fi fi
asflags_filter=echo
cflags_filter=echo
if $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then if $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
cc_type=llvm_gcc cc_type=llvm_gcc
gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)') gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment