Do not split make.conf
I made a mistake when splitting my Portage make.conf
file, having it as one file instead of a directly with many small files is a lot easier to maintain.
Portage allows users to split all of files inside /etc/portage
such as make.conf
, package.use
, package.mask
and other into groups of files contained in directories of the same name. This is very helpful when using automation to add some wanted configuration. But in case of make.conf
it becomes a “form over function” issue.
I would also recommend to keep make.conf
as simple as possible, without useless overrides and variable reassignment.
See also:
Bonus: config
And of course, this is my current /etc/portage/make.conf
of my main dev machine:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
BINPKG_FORMAT="gpkg" CCACHE_DIR="/var/cache/ccache" EMERGE_WARNING_DELAY="0" LC_MESSAGES="C" PORTAGE_NICENESS="10" PORTAGE_WORKDIR_MODE="0775" PORTAGE_LOGDIR="${EPREFIX}/var/log/portage" PORTAGE_ELOG_CLASSES="warn error log" PORTAGE_ELOG_SYSTEM="save" QUICKPKG_DEFAULT_OPTS="--include-config=y --umask=0003" MAKEOPTS="--jobs=7 --load-average=6" COMMON_FLAGS=" -march=znver1 -O2 -falign-functions=32 -fstack-clash-protection -fstack-protector-strong -fdiagnostics-color=always -frecord-gcc-switches -pipe" ADAFLAGS="${COMMON_FLAGS}" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" CARGO_TERM_VERBOSE="false" RUSTFLAGS="-C opt-level=3 -C debuginfo=0" LDFLAGS="${LDFLAGS} -Wl,--defsym=__gentoo_check_ldflags__=0" L10N="en de pl" VIDEO_CARDS="amdgpu radeon radeonsi" CPU_FLAGS_X86=" aes avx avx2 f16c fma3 mmx mmxext pclmul popcnt sha sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3" EMERGE_DEFAULT_OPTS=" --binpkg-changed-deps=y --binpkg-respect-use=y --nospinner --keep-going=y --jobs=3 --load-average=8" GENTOO_MIRRORS=" https://mirror.leaseweb.com/gentoo/ https://gentoo.osuosl.org/ https://distfiles.gentoo.org/" FEATURES=" userpriv usersandbox usersync downgrade-backup unmerge-backup binpkg-multi-instance buildsyspkg parallel-fetch parallel-install ccache -binpkg-logs -ebuild-locks" USE=" custom-cflags custom-optimization firmware initramfs vaapi vulkan -bindist -zeroconf" |