When I build the example running ./build.sh, the generated executable .build/debug/HelloGtk is about 230MB in file size, which seems excessive for a simple application that only shows a window containing a text label.
If I strip the executable with $ strip HelloGtk, the file size gets reduced to 161MB, which is still too big.
Why are the binary executables so big? Is there any way to prevent this?
When I build the example running
./build.sh, the generated executable.build/debug/HelloGtkis about 230MB in file size, which seems excessive for a simple application that only shows a window containing a text label.If I strip the executable with
$ strip HelloGtk, the file size gets reduced to 161MB, which is still too big.Why are the binary executables so big? Is there any way to prevent this?