Hello,
i'm building an relocatable out file with make_static linker option.
I use the stript tool to strip object files before linking but the global variables e.g. will retain in the obj files (for link step of course).
When i try to use the strip tool after linking on out file without option -p all the symbols of global variables retain. wiht option -p all symbols needed for final link step are removed too.
Is there anything I can do to remove static symbols from out file?
Is there any option to rename symbole names like "function1" or "Glb_Variable1" etc.?
Thanks a lot,
Tom