I was looking for a non-chromium alternative browser to Firefox and found mercury. According to this site it is one of the fastest Firefox forks and also has optimizations from other well known forks like librewolf.
I was looking for a non-chromium alternative browser to Firefox and found mercury. According to this site it is one of the fastest Firefox forks and also has optimizations from other well known forks like librewolf.
Everything involving
-O3. That usually stands for “enable all standards-compliant compiler optimisations, no matter how how little their benefit or their stability”.What would be even worse would be
-Ofastwhich won’t even care about strict standards compliance. No sane distributor distributes-Ofastand the only distributor I’d trust to use-O3correctly is Intel’s Clear Linux.I don’t know about
OPT_LEVELbut it’s likely an abstraction of the build system for this flag.Interesting. Thanks!