|
发表于 2010-1-14 19:00:53
|
显示全部楼层
That one is rather old and it refers to the optimization flags in building the system in general, so it should be more conservative to ensure system stability.
If you are compiling the kernel yourself, not using the genkernel approach that the USE flags are taken into account but using regular Linux standard method, than it should have no problems.
To make changes in the Makefile is rather easy because there are only 3 "-O2" entries in the Makefile. Simply use your favourite text editor to replace all of them to -O3 will do the job.
If you replace them one-by-one, you can understand what the purposes of the codes are. They are simple.
Of course, you should not choose "Optimize for size", otherwise, -Os will become active. |
|