I'm trying to plug tcmalloc into a suite of software that we currently use at work. The software comprises of a lot of dll's. They all refer to a shared header file, so I can pragma link the library.

However as none of the code refers to the symbol __tcmalloc the optimizer strips the dll. Now I don't want to have to edit 200 project files and add symbol references in each one. So my question is, is there a way to add a symbol reference programmatically?

To add some clarity I am compiling under Visual Studio 2005.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Ah, for anyone searching to the answer to this it's as follows

#pragma comment(linker, "/include:__tcmalloc")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.