5 Mar
2003
5 Mar
'03
7:34 p.m.
Russell Hind wrote:
For Borland, it might also be worth adding -Vg- which disables CodeGuard. Just in case there are allocations done in inline code in header files which are then freed in methods in the compiled lib (which may/may not have been built with CodeGuard).
Disabling CodeGuard in this way doesn't work as the CodeGuard code is only generated at the point the inline function is actually inlined (i.e. where our code calls it) so wrapping the header in -vG- doesn't disable CodeGuard for the code in it. Russell