I have a dylib written in C ++ that has overloaded operator new and delete .
When linking my cocoa application with my dylib, I have BAD_ACCESS_ERROR , because cocoa is trying to free memory using my operator delete from my dylib.
So, I think I can use the unexported_symbols_list options, but what are the decorated names for operator delete, delete[], new, new[], new(..) ?
source share