Linux embedded arm release lib sizes are huge
Solved
Installation and Deployment
-
Hello!
I'm newbie in developing for arm. I'm trying to build Linux for my system.
I'm adding "embedded arm" in the configure list and "make". After that my QT libs sizes are super huge.
E.g. libQtGui.so size is 125 Mb, or libQtNetwork its 15Mb.As i understand, they're not debug nor have debug info (i dont configure with -debug flag).
How can i make my libs normal size?
-
@Ivan-Megazoo Have you tried
strip
ing them?As i understand, they're not debug nor have debug info
I think they have debug infos.
Regards
-
Just do a
file
command on the library you want to investigate. If it says "not stripped", then you can strip them with yourarm-linux-...-strip
command.Regards
-
This post is deleted!