3
# Need to disable ccache, or we loose the gcov-needed compiler output files.
6
CCACHE_GCOV_VERSION_ENABLED=0
7
if ccache -V > /dev/null 2>&1
9
CCACHE_VER=`ccache -V | head -1 | sed s/"ccache version "//`
10
if test "$CCACHE_VER" == "2.4-gcov"
12
CCACHE_GCOV_VERSION_ENABLED=1
18
export CCACHE_GCOV_VERSION_ENABLED
23
export LDFLAGS="$gcov_link_flags"
25
extra_flags="$pentium_cflags $debug_cflags $max_cflags $gcov_compile_flags"
26
c_warnings="$c_warnings $debug_extra_warnings"
27
cxx_warnings="$cxx_warnings $debug_extra_warnings"
28
extra_configs="$pentium_configs $debug_configs $gcov_configs $max_configs"