mirror of
https://github.com/armbian/build.git
synced 2025-08-09 12:46:58 +02:00
- introduce `do_with_conditional_logging()` which only starts logging sections if `do_logging=no` - with this we should get complete logs (ofc except for the interactive sections)
30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
function prepare_compilation_vars() {
|
|
# moved from config: rpardini: ccache belongs in compilation, not config. I think.
|
|
if [[ $USE_CCACHE != no ]]; then
|
|
CCACHE=ccache
|
|
export PATH="/usr/lib/ccache:$PATH"
|
|
# private ccache directory to avoid permission issues when using build script with "sudo"
|
|
# see https://ccache.samba.org/manual.html#_sharing_a_cache for alternative solution
|
|
[[ $PRIVATE_CCACHE == yes ]] && export CCACHE_DIR=$SRC/cache/ccache
|
|
else
|
|
CCACHE=""
|
|
fi
|
|
|
|
# moved from config: this does not belong in configuration. it's a compilation thing.
|
|
# optimize build time with 100% CPU usage
|
|
CPUS=$(grep -c 'processor' /proc/cpuinfo)
|
|
if [[ $USEALLCORES != no ]]; then
|
|
CTHREADS="-j$((CPUS + CPUS / 2))"
|
|
else
|
|
CTHREADS="-j1"
|
|
fi
|
|
|
|
call_extension_method "post_determine_cthreads" "config_post_determine_cthreads" <<- 'POST_DETERMINE_CTHREADS'
|
|
*give config a chance modify CTHREADS programatically. A build server may work better with hyperthreads-1 for example.*
|
|
Called early, before any compilation work starts.
|
|
POST_DETERMINE_CTHREADS
|
|
|
|
return 0
|
|
}
|
|
|