I want to use jemalloc
on windows as like tcmalloc
. In tcmalloc
I just need to include the tcmalloc
header in source and link with tcmalloc_minimal.lib
and Force include __tcmalloc
symbol in linker option. All malloc
and free calls are replaced by tcmalloc
implementation.
But in jemalloc all functions have je_ prefix and it does not replace CRT malloc/free etc with jemalloc functions.
How can I achieve this?