Unable to use gcov from MinGW. MinGW freshly installed using latest download mingw-get-inst-20110802.exe. If I link with 4.5.2, mingw_vfprintf is not found. If I link with 3.4.5, the program runs but reports a version mismatch.
4.5.2
**** Internal Builder is used for build ****
gcc -O0 -g3 -fprofile-arcs -ftest-coverage -Wall -c -fmessage-length=0 -osrc\Try C.o ..\src\Try C.c
gcc -LC:/mingw/lib/gcc/mingw32/4.5.2 -oTryC.exe src\Try C.o -lgcov
C:/mingw/lib/gcc/mingw32/4.5.2/libgcov.a(_gcov.o):(.text+0x1b): undefined reference to `__mingw_vfprintf'
collect2: ld returned 1 exit status
Build error occurred, build is stopped
Time consumed: 125 ms.
3.4.5
**** Internal Builder is used for build ****
gcc -O0 -g3 -fprofile-arcs -ftest-coverage -Wall -c -fmessage-length=0 -osrc\Try C.o ..\src\Try C.c
gcc -LC:/mingw/lib/gcc/mingw32/3.4.5 -oTryC.exe src\Try C.o -lgcov
Build complete for project Try C
Time consumed: 547 ms.
But it reports a version mismatch error...
profiling:H:\workspace\Try C\Debug/src\Try C.gcda:Version mismatch - expected 304m got 405*
Any help would be appreciated.