Re: Something about Linking
On Jul 8, 7:00 am, "comp.lang.c++.moderated" <dhb2...@gmail.com>
wrote:
The MSVC CRT source code contains ::operator new function definition(I
can jump into it when debugging), so can I say there's a function
built into the crt library? If so, when I define my own ::operator new
function and use static link, when no ``function already defined in
*******" error?
Most likely, the ::operator new function is in a library
somewhere, that the linker uses to resolve unknown symbols.
Since the definition of a library is that an object file it
contains are part of your program if and only if it resolves one
or more unresolved externals; typically, the libraries are
processed in order (although I'm not too sure about VC++---but
I'd be very surprised if its algorithm didn't respect order);
and the standard library (usually called something with either
libc or crt in the name, for historical reasons) is considered
last. So if you've provided an ::operator new, it gets pulled
into your program before the standard one, the unresolved
external is no longer unresolved, and the object file with the
standard ::operator new is not made part of your program.
Note that if the only use of ::operator new is in the standard
library, there might not be an unresolved external for it when
the compiler processes your library; in such cases, you will get
the standard one. (Given the amount of template code in the
standard library, and the fact that template instantiations are
in the translation unit which uses them, this is in fact highly
unlikely. You might not use ::operator new explicitly, but
classes like std::basic_ostream and std::basic_istream do.)
Similarly, if you define ::operator new and ::operator delete in
separate source code modules, it's possible for the symbol for
::operator new to be unresolved, but no reference to ::operator
delete yet to have been seen, or vice versa---in such cases, the
compiler will pull in your ::operator new, but not your
::operator delete, or vice versa, which will cause problems
later. (The simple answer to this is "don't do it".)
At least under Unix (and probably Windows as well), it is
possible to have problems if you force consideration of the
standard library before you include your version. But it takes
some pretty unusual and convoluted commands to do so.
Other solutions are possible, of course, like using weak links
or a special command line option, but as far as I know, the
above solution is pretty much the only one actually used in
practice.
--
James Kanze (Gabi Software) email: james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34