build_env.sh 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. #!/bin/bash
  2. ############################################################################
  3. #
  4. # Title: Build Environment Script for macOS
  5. # Authors: CR Oldham, Shane Lee
  6. # Date: December 2015
  7. #
  8. # Description: This script sets up a build environment for Salt on macOS.
  9. #
  10. # Requirements:
  11. # - Xcode Command Line Tools (xcode-select --install)
  12. #
  13. # Usage:
  14. # This script can be passed 1 parameter
  15. # $1 : <test mode> : if this script should be run in test mode, this
  16. # disables the longer optimized compile time of python.
  17. # Please DO NOT set to "true" when building a
  18. # release version.
  19. # (defaults to false)
  20. #
  21. # Example:
  22. # The following will set up an optimized Python build environment for Salt
  23. # on macOS
  24. #
  25. # ./dev_env.sh
  26. #
  27. ############################################################################
  28. ############################################################################
  29. # Make sure the script is launched with sudo
  30. ############################################################################
  31. if [[ $(id -u) -ne 0 ]]
  32. then
  33. exec sudo /bin/bash -c "$(printf '%q ' "$BASH_SOURCE" "$@")"
  34. fi
  35. ############################################################################
  36. # Set to Exit on all Errors
  37. ############################################################################
  38. trap 'quit_on_error $LINENO $BASH_COMMAND' ERR
  39. quit_on_error() {
  40. echo "$(basename $0) caught error on line : $1 command was: $2"
  41. exit -1
  42. }
  43. ############################################################################
  44. # Parameters Required for the script to function properly
  45. ############################################################################
  46. echo -n -e "\033]0;Build_Env: Variables\007"
  47. MACOSX_DEPLOYMENT_TARGET=10.13
  48. export MACOSX_DEPLOYMENT_TARGET
  49. # This is needed to allow the some test suites (zmq) to pass
  50. # taken from https://github.com/zeromq/libzmq/issues/1878
  51. SET_ULIMIT=200000
  52. sysctl -w kern.maxfiles=$SET_ULIMIT
  53. sysctl -w kern.maxfilesperproc=$SET_ULIMIT
  54. launchctl limit maxfiles $SET_ULIMIT $SET_ULIMIT
  55. ulimit -n $SET_ULIMIT
  56. SRCDIR=`git rev-parse --show-toplevel`
  57. SCRIPTDIR=`pwd`
  58. SHADIR=$SCRIPTDIR/shasums
  59. INSTALL_DIR=/opt/salt
  60. PKG_CONFIG=$INSTALL_DIR/bin/pkg-config
  61. PKG_CONFIG_PATH=$INSTALL_DIR/lib/pkgconfig
  62. PYDIR=$INSTALL_DIR/lib/python3.7
  63. PYTHON=$INSTALL_DIR/bin/python3
  64. PIP=$INSTALL_DIR/bin/pip3
  65. # needed for python to find pkg-config and have pkg-config properly link
  66. # the python install to the compiled openssl below.
  67. export PKG_CONFIG
  68. export PKG_CONFIG_PATH
  69. ############################################################################
  70. # Determine Which XCode is being used (XCode or XCode Command Line Tools)
  71. ############################################################################
  72. # Prefer Xcode command line tools over any other gcc installed (e.g. MacPorts,
  73. # Fink, Brew)
  74. # Check for Xcode Command Line Tools first
  75. if [ -d '/Library/Developer/CommandLineTools/usr/bin' ]; then
  76. MAKE=/Library/Developer/CommandLineTools/usr/bin/make
  77. elif [ -d '/Applications/Xcode.app/Contents/Developer/usr/bin' ]; then
  78. MAKE=/Applications/Xcode.app/Contents/Developer/usr/bin/make
  79. else
  80. echo "No installation of XCode found. This script requires XCode."
  81. echo "Try running: xcode-select --install"
  82. exit -1
  83. fi
  84. ############################################################################
  85. # Download Function
  86. # - Downloads and verifies the MD5
  87. ############################################################################
  88. download(){
  89. if [ -z "$1" ]; then
  90. echo "Must pass a URL to the download function"
  91. fi
  92. URL=$1
  93. PKGNAME=${URL##*/}
  94. cd $BUILDDIR
  95. echo "################################################################################"
  96. echo "Retrieving $PKGNAME"
  97. echo "################################################################################"
  98. curl -LO# $URL
  99. echo "################################################################################"
  100. echo "Comparing Sha512 Hash"
  101. echo "################################################################################"
  102. FILESHA=($(shasum -a 512 $PKGNAME))
  103. EXPECTEDSHA=($(cat $SHADIR/$PKGNAME.sha512))
  104. if [ "$FILESHA" != "$EXPECTEDSHA" ]; then
  105. echo "ERROR: Sha Check Failed for $PKGNAME"
  106. return 1
  107. fi
  108. echo "################################################################################"
  109. echo "Unpacking $PKGNAME"
  110. echo "################################################################################"
  111. tar -zxvf $PKGNAME
  112. return $?
  113. }
  114. ############################################################################
  115. # Ensure Paths are present and clean
  116. ############################################################################
  117. echo "################################################################################"
  118. echo "Ensure Paths are present and clean"
  119. echo "################################################################################"
  120. echo -n -e "\033]0;Build_Env: Clean\007"
  121. # Make sure $INSTALL_DIR is clean
  122. rm -rf $INSTALL_DIR
  123. mkdir -p $INSTALL_DIR
  124. chown $USER:staff $INSTALL_DIR
  125. # Make sure build staging is clean
  126. rm -rf build
  127. mkdir -p build
  128. BUILDDIR=$SCRIPTDIR/build
  129. ############################################################################
  130. # Download and install pkg-config
  131. ############################################################################
  132. echo -n -e "\033]0;Build_Env: pkg-config: download\007"
  133. PKGURL="http://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"
  134. PKGDIR="pkg-config-0.29.2"
  135. download $PKGURL
  136. echo "################################################################################"
  137. echo "Building pkg-config"
  138. echo "################################################################################"
  139. cd $PKGDIR
  140. echo -n -e "\033]0;Build_Env: pkg-config: configure\007"
  141. env LDFLAGS="-framework CoreFoundation -framework Carbon" ./configure --prefix=$INSTALL_DIR --with-internal-glib
  142. echo -n -e "\033]0;Build_Env: pkg-config: make\007"
  143. $MAKE
  144. echo -n -e "\033]0;Build_Env: pkg-config: make check\007"
  145. $MAKE check
  146. echo -n -e "\033]0;Build_Env: pkg-config: make install\007"
  147. $MAKE install
  148. ############################################################################
  149. # Download and install libsodium
  150. ############################################################################
  151. echo -n -e "\033]0;Build_Env: libsodium: download\007"
  152. PKGURL="https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz"
  153. PKGDIR="libsodium-1.0.18"
  154. download $PKGURL
  155. echo "################################################################################"
  156. echo "Building libsodium"
  157. echo "################################################################################"
  158. cd $PKGDIR
  159. echo -n -e "\033]0;Build_Env: libsodium: configure\007"
  160. ./configure --prefix=$INSTALL_DIR
  161. echo -n -e "\033]0;Build_Env: libsodium: make\007"
  162. $MAKE
  163. echo -n -e "\033]0;Build_Env: libsodium: make check\007"
  164. $MAKE check
  165. echo -n -e "\033]0;Build_Env: libsodium: make install\007"
  166. $MAKE install
  167. ############################################################################
  168. # Download and install zeromq
  169. ############################################################################
  170. echo -n -e "\033]0;Build_Env: zeromq: download\007"
  171. PKGURL="https://github.com/zeromq/zeromq4-1/releases/download/v4.1.7/zeromq-4.1.7.tar.gz"
  172. PKGDIR="zeromq-4.1.7"
  173. download $PKGURL
  174. echo "################################################################################"
  175. echo "Building zeromq"
  176. echo "################################################################################"
  177. cd $PKGDIR
  178. echo -n -e "\033]0;Build_Env: zeromq: configure\007"
  179. ./configure --prefix=$INSTALL_DIR
  180. echo -n -e "\033]0;Build_Env: zeromq: make\007"
  181. $MAKE
  182. echo -n -e "\033]0;Build_Env: zeromq: make check\007"
  183. # some tests fail occasionally.
  184. $MAKE check
  185. echo -n -e "\033]0;Build_Env: zeromq: make install\007"
  186. $MAKE install
  187. ############################################################################
  188. # Download and install OpenSSL
  189. ############################################################################
  190. echo -n -e "\033]0;Build_Env: OpenSSL: download\007"
  191. PKGURL="http://openssl.org/source/openssl-1.0.2u.tar.gz"
  192. PKGDIR="openssl-1.0.2u"
  193. download $PKGURL
  194. echo "################################################################################"
  195. echo "Building OpenSSL"
  196. echo "################################################################################"
  197. cd $PKGDIR
  198. echo -n -e "\033]0;Build_Env: OpenSSL: configure\007"
  199. ./Configure darwin64-x86_64-cc shared --prefix=$INSTALL_DIR --openssldir=$INSTALL_DIR/openssl
  200. echo -n -e "\033]0;Build_Env: OpenSSL: make\007"
  201. $MAKE
  202. echo -n -e "\033]0;Build_Env: OpenSSL: make test\007"
  203. $MAKE test
  204. echo -n -e "\033]0;Build_Env: OpenSSL: make install\007"
  205. $MAKE install
  206. ############################################################################
  207. # Download and install Python
  208. ############################################################################
  209. echo -n -e "\033]0;Build_Env: Python: download\007"
  210. # if $1 is true the we should remove the --enable-optimizations flag to get a quicker
  211. # build if testing other functions of this script
  212. if [ "$1" == "true" ]; then
  213. PY_CONF="--prefix=$INSTALL_DIR --enable-shared --with-ensurepip=install"
  214. else
  215. PY_CONF="--prefix=$INSTALL_DIR --enable-shared --with-ensurepip=install --enable-optimizations"
  216. fi
  217. PKGURL="https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tar.xz"
  218. PKGDIR="Python-3.7.4"
  219. download $PKGURL
  220. echo "################################################################################"
  221. echo "Building Python"
  222. echo "################################################################################"
  223. echo "Note there are some test failures"
  224. cd $PKGDIR
  225. echo -n -e "\033]0;Build_Env: Python: configure\007"
  226. # removed --enable-toolbox-glue as no longer a config option
  227. ./configure $PY_CONF
  228. echo -n -e "\033]0;Build_Env: Python: make\007"
  229. $MAKE
  230. echo -n -e "\033]0;Build_Env: Python: make install\007"
  231. $MAKE install
  232. ############################################################################
  233. # upgrade pip
  234. ############################################################################
  235. $PIP install --upgrade pip wheel
  236. ############################################################################
  237. # Download and install salt python dependencies
  238. ############################################################################
  239. echo -n -e "\033]0;Build_Env: PIP Dependencies\007"
  240. cd $BUILDDIR
  241. echo "################################################################################"
  242. echo "Installing Salt Dependencies with pip (normal)"
  243. echo "################################################################################"
  244. $PIP install -r $SRCDIR/pkg/osx/req.txt -r $SRCDIR/pkg/osx/req_pyobjc.txt \
  245. --target=$PYDIR/site-packages \
  246. --ignore-installed \
  247. --no-cache-dir
  248. echo "--------------------------------------------------------------------------------"
  249. echo "Create Symlink to certifi for openssl"
  250. echo "--------------------------------------------------------------------------------"
  251. ln -s $PYDIR/site-packages/certifi/cacert.pem $INSTALL_DIR/openssl/cert.pem
  252. echo -n -e "\033]0;Build_Env: Finished\007"
  253. cd $BUILDDIR
  254. echo "################################################################################"
  255. echo "Build Environment Script Completed"
  256. echo "################################################################################"