Tool/software: Code Composer Studio
I want to release one algorithm library in static library. Is there any possibility that I can hide the symbols(e.g. function name, global variable) in .obj file or final archived .lib file? Basically, I want to prevent prevent decompilation for my lib.
Below are what I investigated, but not fulfill my requirement.
1. -O,--opt_level[=off,0,1,2,3], may help in some level, but not hide the symbol.
2. --visibility=hidden, this works for final linked excitable file, not work for static library.
Is there any such option for cl6x or ar6x?