Tiny Core Linux
Tiny Core Extensions => TCE Corepure64 => Topic started by: maluvia on November 29, 2014, 02:52:36 PM
-
I noticed that it is recommended to use the following prior to make
find . -name Makefile -type f -exec sed -i 's/-O2/ /g' {} \;
What exactly does this do?
And is the following post make command still recommended?
find . | xargs file | grep "executable" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || find . | xargs file | grep "shared object" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip -g 2> /dev/null
-
What exactly does this do?
The recommended tinycore optimisation is "-Os", but as some Makefiles hardcode "-O2" it needs to be removed.
And is the following post make command still recommended?
That command finds files to be stripped in order to reduce their size as per tinycore recommendations.