Lukas Korous
Lukas Korous

Reputation: 81

TCMalloc: delete and delete[] operators patching on Win-64

TCMalloc is a great heap manager for multi-threaded use (in my case OpenMP). It was quite easy to get everything with tcmalloc up and running for linux, windows, 32 bit, but right now I am completely stuck with win-64:

Any help is greatly appreciated.

Upvotes: 0

Views: 293

Answers (1)

Lukas Korous
Lukas Korous

Reputation: 81

I would like to share the solution I found (the mistake of mine):

in one of the linked libraries in the project I forgot the "_DEBUG" preprocessor macro in the Release build. Removing it solved the problem.

Upvotes: 0

Related Questions