Alon Blayer-Gat
2003-10-27 15:54:20 UTC
Has anyone tried using freestore (fs) on UnixWare?
It's a tool which helps find memory leaks. It's part of UDK
One should first instrument the code (at compilation phase) with the
compiler flag "-f"
At this phase, only test/toy source file pass.
Our own source gives the following:
CC -f: Sorry, not implemented: line 18 /usr/include/CC/memory: In "operator
new(args)", there are placement new arguments, or size-expr contains a
comma.
make: *** [genie_connection.o] Error 1
Each time I use an STL container I get this error.
/usr/include/CC/memory is a STL source file.
btw, even when trying only to create a preprocessed file "-E", it gives the
same error as above.
Later on one should link with "-lfs" (which means, it's not a symbol
collision issue)
References (on UnixWare):
man -s C++ fs
Regards,
Alon Blayer-Gat
It's a tool which helps find memory leaks. It's part of UDK
One should first instrument the code (at compilation phase) with the
compiler flag "-f"
At this phase, only test/toy source file pass.
Our own source gives the following:
CC -f: Sorry, not implemented: line 18 /usr/include/CC/memory: In "operator
new(args)", there are placement new arguments, or size-expr contains a
comma.
make: *** [genie_connection.o] Error 1
Each time I use an STL container I get this error.
/usr/include/CC/memory is a STL source file.
btw, even when trying only to create a preprocessed file "-E", it gives the
same error as above.
Later on one should link with "-lfs" (which means, it's not a symbol
collision issue)
References (on UnixWare):
man -s C++ fs
Regards,
Alon Blayer-Gat