I'm going to ship a to static library to a customer.To maximize the privacy of the library I have restricted symbols for the static library using the technique provided by @ypsu Symbol hiding in static libraries built with Xcode
However, the above mentioned method only restrict the user from calling the hidden functions, the name of the hidden function names are still visible to "nm" or "strings".
The names for hidden function are very sensitive. How do I hide or remove this information from the static library ?