How to get a smaller toolchain from scratch?

泄露秘密 提交于 2019-11-29 08:45:52

Fixing this issue has been simpler than expected... All toolchain binaries are installed non-stripped. So this can be fixed calling

$ make install-strip

instead of

$ make install

when you install cross-gcc (stage 2).

Size of generated toolchain is 122MB, what is nice compared with 557M of the original toolchain. So this issue is fixed! Hope this information will be useful for somebody else in the future. Thank you!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!