Comments by "Juzu Juzu" (@juzujuzu4555) on "Gentoo Is No Harder Than Arch Linux??" video.

  1. 38
  2. 10
  3. 9
  4. 4
  5. 3
  6.  @Hugh_I  I have used GentooLTO overlay with ~amd64 and it has been incredibly stable. I only have 2c/4t CPU and I also have Ubuntu Mate. I use Mate on Gentoo also. So I can compare the performance between Gentoo and Ubuntu. And damn the difference is so obvious. Granted I have been optimizing Gentoo as much as possible, it's been my passion forever on computing and life, so Gentoo obviously is made for me. PGO, Profile Guided Optimization, is also amazing on the software that supports it. The problem is that it doubles compile time, but at least I had quite massive improvement from it on Firefox. If you want to compile kernel with O3 and make the kernel use march=native, USE flag called Experimental allows these. After going into USR/SRC/Linux.5.xxx/init and then editing Kconfig. Search "O3" in Kconfig and remove the line that says ARCH Dependent (which is 1-2 lines down from where the only O3 line is). After that you will see "Optimize more for performance (-O3)" option in config utility. I don't know why it's Arch dependent, but it works perfectly without any problems. And I haven't heard anyone having problems with it. Sadly LTO isn't available for kernel, but hopefully should be in the near future. I tried manually if Ofast, Graphite, and the other GentooLTO flags would make kernel faster. By manually changing the .config, but I don't know how I would benchmark kernel, but at least it didn't have positive effects on other benchmarks. Especially on GCC 11 I think O3 makes sense as GCC 11 made some changes that made O2 produce slower code. Most likely it's just placebo (which I think makes it still worthwhile) but in my mind O3 kernel just feels snappier. Like certain things are couple hundredth of a second faster. That's the one good thing for having 7 year old dual core laptop =)
    2
  7. 1