X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=easy-builder;h=f38d0fc2692893c6980bdb72e906f7ede90d1432;hb=43dbbf66229eae466bcb2e275719416d7050f420;hp=b360b2dba4d67630f3a6d43b4a4f1c109f0885fd;hpb=36e32cbab1a5b89935b7c3c0a68e64a9b70fbd78;p=xonotic%2Fnetradiant.git diff --git a/easy-builder b/easy-builder index b360b2db..f38d0fc2 100755 --- a/easy-builder +++ b/easy-builder @@ -14,56 +14,47 @@ install_dir="${project_source_dir}/install${SUBDIR:+/${SUBDIR}}" install_target='install/strip' build_type='Release' -declare -a cmake_opts -case "$(uname -s)" in - 'Linux') - nproc='egrep "^processor" /proc/cpuinfo | wc -l' - ;; - 'FreeBSD') - nproc='sysctl -n hw.ncpu' - - if [ -f "$(ls '/usr/local/bin/g++'* | sort | tail -n1)" ] - then - gcc_version="$(ls '/usr/local/bin/g++'* | sort | tail -n1 | sed -e 's/.*[^0-9]\([0-9][0-9]*\)$/\1/')" - cmake_opts[${#cmake_opts[@]}]="-DCMAKE_C_COMPILER=/usr/local/bin/gcc${gcc_version}" - cmake_opts[${#cmake_opts[@]}]="-DCMAKE_CXX_COMPILER=/usr/local/bin/g++${gcc_version}" - else - printf "WARNING: GCC is recommended: if build fails, install GCC and retry\n" >&2 - fi - ;; - 'Darwin') - nproc='sysctl -n hw.ncpu' - - if [ -f "$(ls '/usr/local/bin/g++-'* | sort | tail -n1)" ] - then - gcc_version="$(ls '/usr/local/bin/g++-'* | sort | tail -n1 | sed -e 's/.*[^0-9]\([0-9][0-9]*\)$/\1/')" - cmake_opts[${#cmake_opts[@]}]="-DCMAKE_C_COMPILER=/usr/local/bin/gcc-${gcc_version}" - cmake_opts[${#cmake_opts[@]}]="-DCMAKE_CXX_COMPILER=/usr/local/bin/g++-${gcc_version}" - else - printf "WARNING: GCC is recommended: if build fails, install GCC and retry\n" >&2 - fi - ;; - 'MSYS_NT-'*) - nproc='echo "${NUMBER_OF_PROCESSORS}"' - ;; - 'CYGWIN_NT-'*|'MINGW'*'_NT-'*) - nproc='echo "${NUMBER_OF_PROCESSORS}"' - printf "WARNING: system is not tested: if build fails, use MSYS2 instead\n" >&2 - ;; - *) - nproc='true' - printf "WARNING: system is not tested\n" >&2 - ;; -esac - -if command -v 'nproc' >/dev/null +if [ "$(uname -s)" = 'FreeBSD' ] then - job_count="$(nproc)" -else - job_count="$(sh -c "${nproc}")" + install_target='install' fi -job_count="${job_count:-4}" +_job_count=4 + +_nproc () { + if command -v 'nproc' >/dev/null + then + nproc + else + case "$(uname -s)" in + 'Linux') + egrep "^processor" /proc/cpuinfo | wc -l + ;; + 'FreeBSD') + sysctl -n hw.ncpu + ;; + 'Darwin') + sysctl -n hw.logicalcpu \ + || sysctl -n hw.ncpu + ;; + 'MSYS_NT-'*|'CYGWIN_NT-'*|'MINGW'*'_NT-'*) + if command -v 'wmic' >/dev/null + then + wmic cpu get NumberOfLogicalProcessors/Format:List \ + | grep -m1 '=' | cut -f2 -d'=' + else + echo "${NUMBER_OF_PROCESSORS:-${_job_count}}" + fi + ;; + *) + echo "${_job_count}" + ;; + esac + fi +} + +job_count="$(_nproc)" 2>/dev/null +job_count="${job_count:-${_job_count}}" declare -a cmake_user_opts while [ ! -z "${1}" ] @@ -86,27 +77,61 @@ do done declare -a fetch_submodules_cmd -if ! [ -f "${project_source_dir}/libs/crunch/inc/crn_decomp.h" ] -then - fetch_submodules_cmd=(git -C "${project_source_dir}" submodule update --init --recursive) -fi +for submodule_file in 'libs/crunch/inc/crn_decomp.h' \ + 'tools/unvanquished/daemonmap/tools/quake3/q3map2/main.c' +do + if ! [ -f "${project_source_dir}/${submodule_file}" ] + then + fetch_submodules_cmd=(git -C "${project_source_dir}" submodule update --init --recursive) + fi +done + +case "$(uname -s)" in + 'Darwin') + cmake_user_opts[${#cmake_user_opts[@]}]='-DBUILTIN_GTKGLEXT=ON -DBUILTIN_GTKTHEME_MOJAVE=ON' + ;; +esac + +task_enter_build_dir () { + mkdir -pv "${build_dir}" + cd "${build_dir}" +} + +task_fetch_submodules () { + "${fetch_submodules_cmd[@]}" +} + +task_configure () { + cmake \ + -G'Unix Makefiles' \ + -D'CMAKE_INSTALL_PREFIX'="${install_dir}" \ + -D'CMAKE_BUILD_TYPE'="${build_type}" \ + "${cmake_user_opts[@]}" \ + "${project_source_dir}" +} + +task_build_builtins () { + make -j"${job_count}" builtins +} + +task_build () { + make -j"${job_count}" +} + +task_install () { + make "${install_target}" +} set -x -"${fetch_submodules_cmd[@]}" - -cmake \ - -G'Unix Makefiles' \ - -S"${project_source_dir}" \ - -B"${build_dir}" \ - -D'CMAKE_INSTALL_PREFIX'="${install_dir}" \ - -D'CMAKE_BUILD_TYPE'="${build_type}" \ - "${cmake_opts[@]}" \ - "${cmake_user_opts[@]}" \ - "${project_source_dir}" - -cmake \ - --build "${build_dir}" \ - -- \ - -j"${job_count}" \ - "${install_target}" +task_enter_build_dir + +task_fetch_submodules + +task_configure + +task_build_builtins + +task_build + +task_install