On Fri, Feb 27, 2015 at 12:07 PM, Matthias Klose <d...@ubuntu.com> wrote: > > is there anything which could be stripped without scarifying functionality? > Linux distributions usually strip things by default, so a hint what exactly is > needed to keep the functionality would be appreciated.
What is needed is file/line information. However, I don't know of an option to strip that discards most debug info but keeps file/line info. The gold linker can do it (--strip-debug-non-line) but that obviously would have to be used when building the library; it doesn't help at install time. Ian