]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
easy-builder: do not enforce gcc on FreeBSD and macOS
authorThomas Debesse <dev@illwieckz.net>
Sun, 5 Apr 2020 03:37:54 +0000 (05:37 +0200)
committerThomas Debesse <dev@illwieckz.net>
Sun, 5 Apr 2020 03:43:36 +0000 (05:43 +0200)
easy-builder

index 18517b46a6f6cbf8b4a237817b28723c563d9b7a..39857382c5ddad6fd2fe1c07cb0ab99f11cbff55 100755 (executable)
@@ -14,56 +14,38 @@ 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'
+_job_count=4
 
-               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
-then
-       job_count="$(nproc)"
-else
-       job_count="$(sh -c "${nproc}")"
-fi
+_nproc () {
+       if command -v 'nproc' >/dev/null
+       then
+               nproc
+       else
+               case "$(uname -s)" in
+                       'Linux')
+                               egrep "^processor" /proc/cpuinfo | wc -l
+                               ;;
+                       'FreeBSD'|'Darwin')
+                               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="${job_count:-4}"
+job_count="$(_nproc)" 2>/dev/null
+job_count="${job_count:-${_job_count}}"
 
 declare -a cmake_user_opts
 while [ ! -z "${1}" ]
@@ -105,7 +87,6 @@ cmake \
        -B"${build_dir}" \
        -D'CMAKE_INSTALL_PREFIX'="${install_dir}" \
        -D'CMAKE_BUILD_TYPE'="${build_type}" \
-       "${cmake_opts[@]}" \
        "${cmake_user_opts[@]}" \
        "${project_source_dir}"