Seems to me there are two tiny errors with CppUTest:
In build/MakefileWorker.mk, the line around 222 that reads
CPPUTEST_CPPFLAGS += $(INCLUDES)
should go *after* the INCLUDES variable has been set around line 236
And in include/CppUTest/MemoryLeakDetectorMallocMacros.h, a tiny typo:
-extern void* cpputest_ralloc_location(void *, size_t, const char*
file, int line);
+extern void* cpputest_realloc_location(void *, size_t, const char*
file, int line);
HTH
--
::::::::::::::::::::::::::::::::::::::::::::
David Lindelöf, Ph.D.
+41 (0)79 415 66 41 or skype:david.lindelof
Better Software for Tomorrow's Cities:
http://computersandbuildings.com
Follow me on Twitter:
http://twitter.com/dlindelof
I'll fix these tomorrow, just before out upcoming release 3.
Thanks!
Bas
Both of these are fixed on the trunk now. Thanks :)
Bas
On 10-Feb-2012, at 6:21 PM, David Lindelöf wrote: