If I understand correctly,
https://wiki.gentoo.org/wiki/Distcc#CFLAGS_and_CXXFLAGS is saying that
CFLAGS should be set to the output of gcc -v -E -x c -march=native
-mtune=native - < /dev/null 2>&1 | grep cc1 | perl -pe 's/^.* - //g;'

Checking the output;
$ gcc -v -E -x c -march=native -mtune=native - < /dev/null 2>&1 | grep cc1
| perl -pe 's/^.* - //g;'
-march=skylake -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -mno-sse4a
-mcx16 -msahf -mmovbe -maes -mno-sha -mpclmul -mpopcnt -mabm -mno-lwp -mfma
-mno-fma4 -mno-xop -mbmi -msgx -mbmi2 -mno-pconfig -mno-wbnoinvd -mno-tbm
-mavx -mavx2 -msse4.2 -msse4.1 -mlzcnt -mrtm -mhle -mrdrnd -mf16c
-mfsgsbase -mrdseed -mprfchw -madx -mfxsr -mxsave -mxsaveopt -mno-avx512f
-mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mclflushopt
-mxsavec -mxsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma
-mno-avx512vbmi -mno-avx5124fmaps -mno-avx5124vnniw -mno-clwb -mno-mwaitx
-mno-clzero -mno-pku -mno-rdpid -mno-gfni -mno-shstk -mno-avx512vbmi2
-mno-avx512vnni -mno-vaes -mno-vpclmulqdq -mno-avx512bitalg -mno-movdiri
-mno-movdir64b -mno-waitpkg -mno-cldemote -mno-ptwrite --param
l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=3072
-mtune=skylake

AFAIK the -march=skylake implies all the other -m options, so adding them
to CFLAGS is redundant, so I am thinking i will set
CFLAGS="-march=skylake --param l1-cache-size=32 --param
l1-cache-line-size=64 --param l2-cache-size=3072 -mtune=skylake"
with the mtune option remaining there for any ebuilds that strip march.

Is that sensible/correct?

Reply via email to