build-static.sh 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. #!/bin/sh
  2. set -o errexit
  3. set -x
  4. if ! type "git" > /dev/null; then
  5. echo "The \"git\" command must be installed."
  6. exit 1
  7. fi
  8. arch="$(uname -m)"
  9. os="$(uname -s | tr '[:upper:]' '[:lower:]')"
  10. md5binary="md5sum"
  11. if [ "${os}" = "darwin" ]; then
  12. os="mac"
  13. md5binary="md5 -q"
  14. fi
  15. if [ "${os}" = "linux" ] && ! type "cmake" > /dev/null; then
  16. echo "The \"cmake\" command must be installed."
  17. exit 1
  18. fi
  19. if [ -z "${PHP_EXTENSIONS}" ]; then
  20. if [ -n "${EMBED}" ] && [ -f "${EMBED}/composer.json" ]; then
  21. cd "${EMBED}"
  22. PHP_EXTENSIONS="$(composer check-platform-reqs --no-dev 2>/dev/null | grep ^ext | sed -e 's/^ext-//' -e 's/ .*//' | xargs | tr ' ' ',')"
  23. export PHP_EXTENSIONS
  24. cd -
  25. else
  26. export PHP_EXTENSIONS="apcu,bcmath,bz2,calendar,ctype,curl,dba,dom,exif,fileinfo,filter,ftp,gd,gmp,gettext,iconv,igbinary,imagick,intl,ldap,mbregex,mbstring,mysqli,mysqlnd,opcache,openssl,parallel,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pgsql,phar,posix,protobuf,readline,redis,session,shmop,simplexml,soap,sockets,sodium,sqlite3,ssh2,sysvmsg,sysvsem,sysvshm,tidy,tokenizer,xlswriter,xml,xmlreader,xmlwriter,zip,zlib,yaml,zstd"
  27. fi
  28. fi
  29. if [ -z "${PHP_EXTENSION_LIBS}" ]; then
  30. export PHP_EXTENSION_LIBS="bzip2,freetype,libavif,libjpeg,liblz4,libwebp,libzip"
  31. fi
  32. # The Brotli library must always be built as it is required by http://github.com/dunglas/caddy-cbrotli
  33. if ! echo "${PHP_EXTENSION_LIBS}" | grep -q "\bbrotli\b"; then
  34. export PHP_EXTENSION_LIBS="${PHP_EXTENSION_LIBS},brotli"
  35. fi
  36. if [ -z "${PHP_VERSION}" ]; then
  37. export PHP_VERSION="8.3"
  38. fi
  39. if [ -z "${FRANKENPHP_VERSION}" ]; then
  40. FRANKENPHP_VERSION="$(git rev-parse --verify HEAD)"
  41. export FRANKENPHP_VERSION
  42. elif [ -d ".git/" ]; then
  43. CURRENT_REF="$(git rev-parse --abbrev-ref HEAD)"
  44. export CURRENT_REF
  45. if echo "${FRANKENPHP_VERSION}" | grep -F -q "."; then
  46. # Tag
  47. # Trim "v" prefix if any
  48. FRANKENPHP_VERSION=${FRANKENPHP_VERSION#v}
  49. export FRANKENPHP_VERSION
  50. git checkout "v${FRANKENPHP_VERSION}"
  51. else
  52. git checkout "${FRANKENPHP_VERSION}"
  53. fi
  54. fi
  55. bin="frankenphp-${os}-${arch}"
  56. if [ -n "${CLEAN}" ]; then
  57. rm -Rf dist/
  58. go clean -cache
  59. fi
  60. # Build libphp if necessary
  61. if [ -f "dist/static-php-cli/buildroot/lib/libphp.a" ]; then
  62. cd dist/static-php-cli
  63. else
  64. mkdir -p dist/
  65. cd dist/
  66. if [ -d "static-php-cli/" ]; then
  67. cd static-php-cli/
  68. git pull
  69. else
  70. git clone --depth 1 https://github.com/crazywhalecc/static-php-cli
  71. cd static-php-cli/
  72. fi
  73. if type "brew" > /dev/null; then
  74. if ! type "composer" > /dev/null; then
  75. packages="composer"
  76. fi
  77. if ! type "go" > /dev/null; then
  78. packages="${packages} go"
  79. fi
  80. if [ -n "${RELEASE}" ] && ! type "gh" > /dev/null; then
  81. packages="${packages} gh"
  82. fi
  83. if [ -n "${packages}" ]; then
  84. # shellcheck disable=SC2086
  85. brew install --formula --quiet ${packages}
  86. fi
  87. fi
  88. composer install --no-dev -a
  89. if [ "${os}" = "linux" ]; then
  90. extraOpts="--disable-opcache-jit"
  91. fi
  92. if [ -n "${DEBUG_SYMBOLS}" ]; then
  93. extraOpts="${extraOpts} --no-strip"
  94. fi
  95. ./bin/spc doctor --auto-fix
  96. ./bin/spc download --with-php="${PHP_VERSION}" --for-extensions="${PHP_EXTENSIONS}" --for-libs="${PHP_EXTENSION_LIBS}" --ignore-cache-sources=php-src
  97. # shellcheck disable=SC2086
  98. ./bin/spc build --debug --enable-zts --build-embed ${extraOpts} "${PHP_EXTENSIONS}" --with-libs="${PHP_EXTENSION_LIBS}"
  99. fi
  100. CGO_CFLAGS="-DFRANKENPHP_VERSION=${FRANKENPHP_VERSION} -I${PWD}/buildroot/include/ $(./buildroot/bin/php-config --includes | sed s#-I/#-I"${PWD}"/buildroot/#g)"
  101. if [ -n "${DEBUG_SYMBOLS}" ]; then
  102. CGO_CFLAGS="-g ${CGO_CFLAGS}"
  103. fi
  104. export CGO_CFLAGS
  105. if [ "${os}" = "mac" ]; then
  106. export CGO_LDFLAGS="-framework CoreFoundation -framework SystemConfiguration"
  107. fi
  108. CGO_LDFLAGS="${CGO_LDFLAGS} ${PWD}/buildroot/lib/libbrotlicommon.a ${PWD}/buildroot/lib/libbrotlienc.a ${PWD}/buildroot/lib/libbrotlidec.a $(./buildroot/bin/php-config --ldflags || true) $(./buildroot/bin/php-config --libs || true)"
  109. export CGO_LDFLAGS
  110. LIBPHP_VERSION="$(./buildroot/bin/php-config --version)"
  111. export LIBPHP_VERSION
  112. cd ../
  113. if [ "${os}" = "linux" ]; then
  114. if [ -n "${MIMALLOC}" ]; then
  115. # Replace musl's mallocng by mimalloc
  116. # The default musl allocator is slow, especially when used by multi-threaded apps,
  117. # and triggers weird bugs
  118. # Adapted from https://www.tweag.io/blog/2023-08-10-rust-static-link-with-mimalloc/
  119. echo 'The USE_MIMALLOC environment variable is EXPERIMENTAL.'
  120. echo 'This option can be removed or its behavior modified at any time.'
  121. if [ ! -f "mimalloc/out/libmimalloc.a" ]; then
  122. if [ -d "mimalloc" ]; then
  123. cd mimalloc/
  124. git reset --hard
  125. git clean -xdf
  126. git fetch --tags
  127. else
  128. git clone https://github.com/microsoft/mimalloc.git
  129. cd mimalloc/
  130. fi
  131. git checkout "$(git describe --tags "$(git rev-list --tags --max-count=1 || true)" || true)"
  132. curl -f -L --retry 5 https://raw.githubusercontent.com/tweag/rust-alpine-mimalloc/b26002b49d466a295ea8b50828cb7520a71a872a/mimalloc.diff -o mimalloc.diff
  133. patch -p1 < mimalloc.diff
  134. mkdir -p out/
  135. cd out/
  136. if [ -n "${DEBUG_SYMBOLS}" ]; then
  137. cmake \
  138. -DCMAKE_BUILD_TYPE=Debug \
  139. -DMI_BUILD_SHARED=OFF \
  140. -DMI_BUILD_OBJECT=OFF \
  141. -DMI_BUILD_TESTS=OFF \
  142. ../
  143. else
  144. cmake \
  145. -DCMAKE_BUILD_TYPE=Release \
  146. -DMI_BUILD_SHARED=OFF \
  147. -DMI_BUILD_OBJECT=OFF \
  148. -DMI_BUILD_TESTS=OFF \
  149. ../
  150. fi
  151. make -j"$(nproc || true)"
  152. cd ../../
  153. fi
  154. if [ -n "${DEBUG_SYMBOLS}" ]; then
  155. libmimalloc_path=mimalloc/out/libmimalloc-debug.a
  156. else
  157. libmimalloc_path=mimalloc/out/libmimalloc.a
  158. fi
  159. # Patch musl library to use mimalloc
  160. for libc_path in "/usr/local/musl/lib/libc.a" "/usr/local/musl/$(uname -m)-linux-musl/lib/libc.a" "/usr/lib/libc.a"
  161. do
  162. if [ ! -f "${libc_path}" ] || [ -f "${libc_path}.unpatched" ]; then
  163. continue
  164. fi
  165. {
  166. echo "CREATE libc.a"
  167. echo "ADDLIB ${libc_path}"
  168. echo "DELETE aligned_alloc.lo calloc.lo donate.lo free.lo libc_calloc.lo lite_malloc.lo malloc.lo malloc_usable_size.lo memalign.lo posix_memalign.lo realloc.lo reallocarray.lo valloc.lo"
  169. echo "ADDLIB ${libmimalloc_path}"
  170. echo "SAVE"
  171. } | ar -M
  172. mv "${libc_path}" "${libc_path}.unpatched"
  173. mv libc.a "${libc_path}"
  174. done
  175. fi
  176. # Increase the default stack size to prevents issues with code including many files such as Symfony containers
  177. extraExtldflags="-Wl,-z,stack-size=0x80000"
  178. fi
  179. if [ -z "${DEBUG_SYMBOLS}" ]; then
  180. extraLdflags="-w -s"
  181. fi
  182. cd ../
  183. # Embed PHP app, if any
  184. if [ -n "${EMBED}" ] && [ -d "${EMBED}" ]; then
  185. tar -cf app.tar -C "${EMBED}" .
  186. ${md5binary} app.tar | awk '{printf $1}' > app_checksum.txt
  187. fi
  188. cd caddy/frankenphp/
  189. go env
  190. go build -buildmode=pie -tags "cgo netgo osusergo static_build" -ldflags "-linkmode=external -extldflags '-static-pie ${extraExtldflags}' ${extraLdflags} -X 'github.com/caddyserver/caddy/v2.CustomVersion=FrankenPHP ${FRANKENPHP_VERSION} PHP ${LIBPHP_VERSION} Caddy'" -o "../../dist/${bin}"
  191. cd ../..
  192. if [ -d "${EMBED}" ]; then
  193. truncate -s 0 app.tar
  194. truncate -s 0 app_checksum.txt
  195. fi
  196. if type "upx" > /dev/null && [ -z "${DEBUG_SYMBOLS}" ] && [ -z "${NO_COMPRESS}" ]; then
  197. upx --best "dist/${bin}"
  198. fi
  199. "dist/${bin}" version
  200. if [ -n "${RELEASE}" ]; then
  201. gh release upload "v${FRANKENPHP_VERSION}" "dist/${bin}" --repo dunglas/frankenphp --clobber
  202. fi
  203. if [ -n "${CURRENT_REF}" ]; then
  204. git checkout "${CURRENT_REF}"
  205. fi