There was an error while loading. Please reload this page.
with llvm-strip -x S libname.a
And we're getting tons of errors saying:
"libname.a: not stripping symbol '.L.str' because it is named in a relocation"
There errordoesn't say the obj file that it comes from, so we don't know where to look, and it's always a literal const char string.
What's should we be looking here?
We use --strip-all --discard-all with the gcc strip and it works fine, so is llvm-strip just more aggressive?