Qt Malloc / Free over-riding
-
We are having Qt4.8.2 working on Mips based Platform.
For our requirement, we would like to use our own malloc/new and free/delete and not from standard library.
In the above scenario, I can over-ride the new/delete operator easily. For malloc/free, LD_PRELOAD can be used for custom malloc/free.My question is - does Qt provides a any way to "over-ride" malloc/free? OR any other better way, compared to as described above?
-