pastebin - collaborative debugging tool
rovema.kpaste.net RSS


RDE: buildrdecygwin.bash
Posted by Anonymous on Mon 31st Jul 2023 12:18
raw | new post
view followups (newest first): RDE: buildrdecygwin.bash by Anonymous
modification of post by Anonymous (view diff)

  1. #!/bin/bash
  2.  
  3. #
  4. # buildrdecygwin.bash - build ROVEMA RDE using Cygwin
  5. #
  6.  
  7. #
  8. # Written by Roland Mainz <roland.mainz@rovema.de>
  9. #
  10.  
  11. #
  12. # Usage:
  13. #
  14. # 1. Build RDE
  15. # mkdir try10_rde_new_rds/
  16. # cd try10_rde_new_rds
  17. # git clone https://RovemaDevelopment@dev.azure.com/RovemaDevelopment/RDE-Development/_git/Dependencies
  18. # git clone --recurse-submodules https://RovemaDevelopment@dev.azure.com/RovemaDevelopment/RDE-Development/_git/RDE-Development
  19. # cd RDE-Development/
  20. # mkdir build_windows4
  21. # cd build_windows4/
  22. # time nice bash ../scripts/buildrdecygwin.bash buildall 2>&1 | tee -a buildlog.log
  23. #
  24. # 2a. Start RDE (manually):
  25. # $ bash -c 'PATH+=":${qtpath}/5.15.2/mingw81_64/bin" ; ./rde'
  26. #
  27. # 2b. Start RDE (via script):
  28. # $ bash buildrdecygwin.bash run
  29. #
  30.  
  31.  
  32. function calc_max_parallel_jobs
  33. {
  34.         set -o nounset
  35.  
  36.         typeset -li mem_total=-1
  37.         typeset -li swap_total=-1
  38.         typeset -r -li memory_per_job=$2
  39.         typeset -r -li num_cpus=$(getconf '_NPROCESSORS_ONLN')
  40.         typeset -li numjobs_in_memory
  41.         typeset -n numjobs=$1
  42.  
  43.         read mem_total <<<"$(awk \
  44.                 $'/MemTotal/ { print $2 }' \
  45.                 <'/proc/meminfo')"
  46.         read swap_total <<<"$(awk \
  47.                 $'/SwapTotal/ { print $2 }' \
  48.                 <'/proc/meminfo')"
  49.                
  50.         printf $"%s: mem_total=%d, swap_total=%d\n" \
  51.                 "$0" \
  52.                 "$mem_total" \
  53.                 "$swap_total"
  54.  
  55.         # data in /proc/meminto are in KB, but we need bytes
  56.         (( mem_total*=1024, swap_total*=1024 ))
  57.  
  58.         # handle read errors
  59.         if (( (mem_total < 0) || (swap_total < 0) )) ; then
  60.                 printf $"%s: error, could not read memory data\n" "$0"
  61.                 return 1
  62.         fi
  63.  
  64.         # we need at least 1GB of swap space
  65.         if (( swap_total < (1024*1024*1924) )) ; then
  66.                 printf $"#\n# %s: ERROR: Swap memory too low %d\n#\n" "$0" "$swap_total"
  67.                 return 1
  68.         fi
  69.  
  70.         # calculate how much jobs would fit into the memory
  71.         (( numjobs_in_memory = (mem_total+swap_total) / memory_per_job ))
  72.  
  73.         # restrict the number of jobs to twice the amount of CPUs
  74.         (( numjobs = (numjobs_in_memory > (num_cpus*2))?(num_cpus*2):numjobs_in_memory ))
  75.  
  76.         # we want at least one job
  77.         (( numjobs = (numjobs >= 1)?numjobs:1 ))
  78.        
  79.         # statistics
  80.         printf $"%s: numjobs_in_memory=%d\n"    "$0" "$numjobs_in_memory"
  81.         printf $"%s: numjobs=%d\n"              "$0" "$numjobs"
  82.         return 0
  83. }
  84.  
  85.  
  86. #
  87. # Configuration paths
  88. #
  89. function configure_paths
  90. {
  91.         boost_Version='1_71_0'
  92.         qt_Version='5_15_2'
  93.  
  94.         #
  95.         # Prebuild RDE build tools (compiler etc)
  96.         # (from $ git clone https://RovemaDevelopment@dev.azure.com/RovemaDevelopment/RDE-Development/_git/Dependencies #)
  97.         #
  98.         #git_rde_dependicies_dir='/cygdrive/h/tmp/winnfstest/hummingbirdnfstest1/rde_windows_developmement/Dependencies/win/'
  99.         #git_rde_dependicies_dir='/home/roland_mainz/work/rde/build_dep/Dependencies/win/'
  100.         git_rde_dependicies_dir="$(realpath "$PWD/../../Dependencies")/win/"
  101.         if [[ ! -d "$git_rde_dependicies_dir" ]] ; then
  102.                 printf $"%s: ERROR: %s dir not found\n" "$0" "$git_rde_dependicies_dir" 1>&2
  103.                 return 1
  104.         fi
  105.  
  106.         boostpath="${git_rde_dependicies_dir}/boost/boost_${boost_Version}/"
  107.         qtpath="${git_rde_dependicies_dir}/qt/qt_${qt_Version}/"
  108.  
  109.         printf $"# building with boost version %s and qt version %s\n" "$boost_Version" "qt_Version"
  110.  
  111.         # Setting-up PATH
  112.         export PATH="$qtpath/Tools/mingw810_64/bin/:$qtpath/5.15.2/mingw81_64/bin/:$qtpath/Tools/CMake_64/bin/:$boostpath/bin/:$boostpath/lib/:$PATH"
  113.         printf $"# PATH=%s\n# Windows PATH=%s\n" "$PATH" "$(cygpath -p -w "$PATH")"
  114.         return 0
  115. }
  116.  
  117. function probe_paths
  118. {
  119.         printf $"# Probing PATH for tools ...\n"
  120.         which -a gcc
  121.         which -a g++
  122.         which -a cmake
  123.         which -a make
  124.  
  125.         return 0
  126. }
  127.  
  128. #
  129. # Build
  130. #
  131.  
  132. function build_clean
  133. {
  134.         printf $"# Cleanup old build stuff ...\n"
  135.         rm -Rf CMake* CPack* CTestTestfile.cmake app_translations.qrc cmake_install.cmake nowide tests RDS Makefile *.qm rde.rc rde_autogen tmp versioninfo.cpp
  136.         return 0
  137. }
  138.  
  139. function build_cmake_config
  140. {
  141.         printf $"# Running build configuration via cmake ...\n"
  142.         # note: Windows/minGW uses '-G "MinGW Makefiles"', while compiling with Cygwin requires '-G "Unix Makefiles"'
  143.         cmake -G "Unix Makefiles" -DBOOST_ROOT="$boostpath" -DBoost_LIB_PREFIX="lib" -DBoost_USE_STATIC_LIBS=TRUE -DBoost_ARCHITECTURE="-x64" -DBUILD_TESTS=ON ".."
  144.         return 0
  145. }
  146.  
  147. function build_cmake_clean
  148. {
  149.         printf $"# Target clean ...\n"
  150.         cmake --build . -j 1 --target clean
  151.         return 0
  152. }
  153.  
  154. function build_cmake_targets
  155. {
  156.         typeset -li num_parallel_jobs=$1
  157.  
  158.         printf $"# Building ...\n"
  159.  
  160.         cmake --build . -j $num_parallel_jobs
  161.         printf $"%s: Build done.\n" "$0"
  162.         return 0
  163. }
  164.  
  165. #
  166. # main
  167. #
  168. set -o errexit
  169. set -o nounset
  170. #set -o xtrace # debug
  171.  
  172. printf $"%s: Start ...\n" "$0"
  173.  
  174. # Check whether we are really on Cygwin...
  175. if [[ "$(uname -s)" != *CYGWIN* ]] ; then
  176.         printf $"%s: ERROR: Not a Cygwin environment.\n" "$0" 1>&2
  177.         exit 1
  178. fi
  179.  
  180. typeset boost_Version qt_Version git_rde_dependicies_dir boostpath qtpath
  181. typeset -li num_parallel_jobs
  182.  
  183. configure_paths
  184.  
  185. case "${1-}" in
  186.         'buildall')
  187.                 calc_max_parallel_jobs num_parallel_jobs $((512*1024*1024)) || exit 1
  188.                 probe_paths
  189.                 build_clean
  190.                 build_cmake_config
  191.                 build_cmake_clean
  192.                 build_cmake_targets "$num_parallel_jobs"
  193.                 ;;
  194.         'clean')
  195.                 build_clean
  196.                 ;;
  197.         'run')
  198.                 ./rde
  199.                 exit $?
  200.                 ;;
  201.         *)
  202.                 printf $"%s: Unknown cmd %q\n" "$0" "${1-}" 1>&2
  203.                 exit 1
  204.                 ;;
  205. esac
  206.  
  207. exit 0
  208.  
  209. # EOF.

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at