is there any method to hide/strip symbols using wildcards in MAC OSX. My usecase is to use this method in makefile for building a library for iOS.
strip -x
command strips all the symbols from the library. But I want to expose few symbols using wildcard.
2.Iin makefile using flag offvisibility=hidden
has no control for wildcards.
I found this method which uses ruby. I dont know how to use it for wildcard though. Hiding the symbols of a static library in a dynamic library in MAC OS X?