Update 2023-12-04 23:48 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2023-12-04 23:48:52 +01:00
parent 865a9e051b
commit d78c01901f
5 changed files with 8 additions and 13 deletions

View File

@@ -8,17 +8,13 @@ abort() { echo "Abort with >$0 $ARGS< on $(date)" >> /tmp/obsdmake.log; }
JOBS="${JOBS:=$(sysctl -n hw.ncpuonline)}"
export GLOBAL_AUTOCONF_CACHE="/var/ccache/config.cache"
export CCACHE_DIR="/var/ccache"
export CCACHE_SLOPPINESS="locale,time_macros,random_seed"
export CCACHE_SLOPPINESS="locale,time_macros,random_seed,file_stat_matches"
export CCACHE_MAXSIZE=60G
export CCACHE_NOHASHDIR=
# base llvm?
export LLVM_CCACHE_BUILD=1
export LLVM_CCACHE_DIR="/var/ccache"
export CMAKE_CXX_COMPILER_LAUNCHER="ccache"
export CMAKE_C_COMPILER_LAUNCHER="ccache"
export CMAKE_CXX_COMPILER_LAUNCHER=ccache
export CMAKE_C_COMPILER_LAUNCHER=ccache
FLAGS="-fno-stack-protector -fno-ret-protector -mno-retpoline -march=native"
export CC="/opt/ccache/bin/cc $FLAGS"