diff options
author | Silvino Silva <silvino@bk.ru> | 2020-01-08 01:08:31 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2020-01-08 01:17:57 +0000 |
commit | 8f001cad3cccf96685850653782b69a2a5ef5710 (patch) | |
tree | f4d4a17786c369b011871f96b4403bd8d3c23758 | |
parent | 3c91dcf55848af602b43b00b8d17ba6e6ca2c08c (diff) | |
download | doc-8f001cad3cccf96685850653782b69a2a5ef5710.tar.gz |
pkgmk.conf revision
-rw-r--r-- | core/conf/pkgmk.conf | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/core/conf/pkgmk.conf b/core/conf/pkgmk.conf index 4d689ec..1e86c95 100644 --- a/core/conf/pkgmk.conf +++ b/core/conf/pkgmk.conf @@ -5,30 +5,30 @@ export CFLAGS="-O2 -march=x86-64" export CXXFLAGS="${CFLAGS}" -## ccache settings +# local compile only +export JOBS=$(nproc) +export MAKEFLAGS="-j $JOBS" + +# ccache settings #export PATH="/usr/lib/ccache/:$PATH" #export CCACHE_DIR="/usr/ports/ccache" -#export CCACHE_PREFIX="distcc" #export CCACHE_COMPILERCHECK="%compiler% -dumpversion; crux" -# -## compile using ccache and distcc -#export DISTCC_HOSTS="localhost/4 xborg/4" -# -### compile using distcc without ccache -##export PATH="/usr/lib/distcc/:$PATH" -##export DISTCC_HOSTS="localhost/4,lzo,cpp xborg/4,lzo,cpp" -##export PUMP_BUILD=yes -# -## distcc settings + +# compile using ccache and distcc +#export CCACHE_PREFIX="distcc" +#export DISTCC_HOSTS="localhost/4 c11/2" + +## compile using distcc without ccache +#export PATH="/usr/lib/distcc/:$PATH" +#export DISTCC_HOSTS="localhost/4,lzo,cpp xborg/4,lzo,cpp" +#export PUMP_BUILD=yes + +# distcc settings #export JOBS=$(/usr/bin/distcc -j 2> /dev/null) #export DISTCC_DIR="/usr/ports/distcc" #export MAKEFLAGS="-j ${JOBS}" #export SCONSFLAGS="$MAKEFLAGS" -# local compile only -export JOBS=$(nproc) -export MAKEFLAGS="-j $JOBS" - case ${PKGMK_ARCH} in "64"|"") ;; @@ -44,7 +44,7 @@ case ${PKGMK_ARCH} in ;; esac -PKGMK_SOURCE_MIRRORS=(https://hive.gnu.systems/mirror-3.4/distfiles/) +PKGMK_SOURCE_MIRRORS=(https://hive.gnu.systems/mirror/distfiles/ https://hive.gnu.systems/mirror/archive/distfiles/) # PKGMK_SOURCE_DIR="$PWD" PKGMK_SOURCE_DIR="/usr/ports/distfiles" # PKGMK_PACKAGE_DIR="$PWD" |