On Fri, 2009-10-23 at 10:23 +0200, Holger Hans Peter Freyther wrote: > One thing that pops back into my mind is to move .a files into a -static > package? People that want to link statically can pick their .a files.
Yes, I think someone else proposed this a few weeks ago but it doesn't seem to have happened. Given that static linking is pretty much a minority pursuit nowadays (excepting libc_noshared.a) this sounds like a fine idea. Stripping .a files with the default options will effectively destroy them so the current state of affairs is definitely silly. If you are going to do that then you might as well just delete the files: they are no use for anything after stripping. An alternative (or an addition) to the -static packaging would be to arrange for .a files (and .o files, I guess) to be stripped with "strip --strip-debug" (or perhaps --strip-unneeded). This should leave enough symbol data in the files for them to remain usable. p. _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
