···17# -O3: sets the optimization level. -O2 is the default and considered safe but i've
18# personally not run into any issues with -O3
19# -flto=thin: use ThinLTO. this option is not available for gcc, instead you would
20-# just use -flto
21# -pipe: use pipes instead of temporary files. on slow disk, this could help alot
22# -falign-functions=32: Clear Linux uses this flag, Intel cpus apparently perform
23# better with this option
···17# -O3: sets the optimization level. -O2 is the default and considered safe but i've
18# personally not run into any issues with -O3
19# -flto=thin: use ThinLTO. this option is not available for gcc, instead you would
20+# just use -flto (not revommended)
21# -pipe: use pipes instead of temporary files. on slow disk, this could help alot
22# -falign-functions=32: Clear Linux uses this flag, Intel cpus apparently perform
23# better with this option