ssbssa / heob

Detects buffer overruns and memory leaks.
Boost Software License 1.0
155 stars 25 forks source link

support MT #17

Closed isugarhome closed 4 years ago

isugarhome commented 4 years ago

this is a powerful application, but can not detect memory leak in dll wih /MT,can it support library with /MT?

ssbssa commented 4 years ago

Sadly no, /MT is not possible. It's because heob hooks the imported malloc/free/... functions, but if you link with static versions of the CRT, then there is nothing heob can hook.