Assuming I have a static library where all global symbols need to be re-exported by the target executable. How do I extract these symbols into a file to be used with ld's -exported_symbols_list
and Xcode's EXPORTED_SYMBOLS_FILE
?
I was thinking about nm -gUjo …
+ sed
but maybe there is abetter way?