timbobsteve
Member
- Joined
- Oct 4, 2005
- Messages
- 301
Hi all,
Just wanted to know everyones thoughts on reducing the size of the devkitPro GP2X toolchain.
My first thoughts would be stripping the debuging symbols from all the libs and binaries. What do you think of running these commands:
find /opt/local/DevKitPro/{arm-linux-gnu/}bin/ -type f -exec strip --strip-all '{}' ';'
find /opt/local/DevKitPro/lib/ -type f -exec strip --strip-unneeded '{}' ';'
Would that do harm to the toolchain if I ran those commands?
Also, when stripping the toolchain, do I need to use the arm-linux-strip? or will the normal gnu strip command be sufficient?
Thanks for any help. Basically I want the toolchain down to the smallest possible size, as it is going on a liveCD distro.
Just wanted to know everyones thoughts on reducing the size of the devkitPro GP2X toolchain.
My first thoughts would be stripping the debuging symbols from all the libs and binaries. What do you think of running these commands:
find /opt/local/DevKitPro/{arm-linux-gnu/}bin/ -type f -exec strip --strip-all '{}' ';'
find /opt/local/DevKitPro/lib/ -type f -exec strip --strip-unneeded '{}' ';'
Would that do harm to the toolchain if I ran those commands?
Also, when stripping the toolchain, do I need to use the arm-linux-strip? or will the normal gnu strip command be sufficient?
Thanks for any help. Basically I want the toolchain down to the smallest possible size, as it is going on a liveCD distro.