mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-02 22:35:43 +08:00
Compare commits
1 Commits
fix/postgr
...
docs/ga
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1a6c044ee9 |
@@ -108,7 +108,8 @@ RUN apk update; \
|
|||||||
wget \
|
wget \
|
||||||
xz \
|
xz \
|
||||||
gettext-dev \
|
gettext-dev \
|
||||||
binutils-gold
|
binutils-gold \
|
||||||
|
patchelf
|
||||||
|
|
||||||
RUN curl -#fSL https://dl.static-php.dev/static-php-cli/bulk/php-8.4.4-cli-linux-\$(uname -m).tar.gz | tar -xz -C /usr/local/bin && \
|
RUN curl -#fSL https://dl.static-php.dev/static-php-cli/bulk/php-8.4.4-cli-linux-\$(uname -m).tar.gz | tar -xz -C /usr/local/bin && \
|
||||||
chmod +x /usr/local/bin/php
|
chmod +x /usr/local/bin/php
|
||||||
@@ -161,47 +162,6 @@ if [ ! -z "$GITHUB_TOKEN" ]; then
|
|||||||
ENV_LIST="$ENV_LIST -e GITHUB_TOKEN=$GITHUB_TOKEN"
|
ENV_LIST="$ENV_LIST -e GITHUB_TOKEN=$GITHUB_TOKEN"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Intercept and rewrite --with-frankenphp-app option, and mount host path to /app/app
|
|
||||||
FRANKENPHP_APP_PATH=""
|
|
||||||
NEW_ARGS=()
|
|
||||||
while [ $# -gt 0 ]; do
|
|
||||||
case "$1" in
|
|
||||||
--with-frankenphp-app=*)
|
|
||||||
FRANKENPHP_APP_PATH="${1#*=}"
|
|
||||||
NEW_ARGS+=("--with-frankenphp-app=/app/app")
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
--with-frankenphp-app)
|
|
||||||
if [ -n "${2:-}" ]; then
|
|
||||||
FRANKENPHP_APP_PATH="$2"
|
|
||||||
NEW_ARGS+=("--with-frankenphp-app=/app/app")
|
|
||||||
shift 2
|
|
||||||
else
|
|
||||||
NEW_ARGS+=("$1")
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
NEW_ARGS+=("$1")
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
# Normalize the path and add mount if provided
|
|
||||||
if [ -n "$FRANKENPHP_APP_PATH" ]; then
|
|
||||||
# expand ~ to $HOME
|
|
||||||
if [ "${FRANKENPHP_APP_PATH#~}" != "$FRANKENPHP_APP_PATH" ]; then
|
|
||||||
FRANKENPHP_APP_PATH="$HOME${FRANKENPHP_APP_PATH#~}"
|
|
||||||
fi
|
|
||||||
# make absolute if relative
|
|
||||||
case "$FRANKENPHP_APP_PATH" in
|
|
||||||
/*) ABS_APP_PATH="$FRANKENPHP_APP_PATH" ;;
|
|
||||||
*) ABS_APP_PATH="$(pwd)/$FRANKENPHP_APP_PATH" ;;
|
|
||||||
esac
|
|
||||||
MOUNT_LIST="$MOUNT_LIST -v $ABS_APP_PATH:/app/app"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Run docker
|
# Run docker
|
||||||
# shellcheck disable=SC2068
|
# shellcheck disable=SC2068
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
@@ -223,5 +183,5 @@ if [ "$SPC_DOCKER_DEBUG" = "yes" ]; then
|
|||||||
set -ex
|
set -ex
|
||||||
$DOCKER_EXECUTABLE run $PLATFORM_ARG --rm $INTERACT $ENV_LIST $MOUNT_LIST cwcc-spc-$SPC_USE_ARCH-$SPC_DOCKER_VERSION /bin/bash
|
$DOCKER_EXECUTABLE run $PLATFORM_ARG --rm $INTERACT $ENV_LIST $MOUNT_LIST cwcc-spc-$SPC_USE_ARCH-$SPC_DOCKER_VERSION /bin/bash
|
||||||
else
|
else
|
||||||
$DOCKER_EXECUTABLE run $PLATFORM_ARG --rm $INTERACT $ENV_LIST $MOUNT_LIST cwcc-spc-$SPC_USE_ARCH-$SPC_DOCKER_VERSION bin/spc "${NEW_ARGS[@]}"
|
$DOCKER_EXECUTABLE run $PLATFORM_ARG --rm $INTERACT $ENV_LIST $MOUNT_LIST cwcc-spc-$SPC_USE_ARCH-$SPC_DOCKER_VERSION bin/spc $@
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -92,6 +92,11 @@ RUN echo "source scl_source enable devtoolset-10" >> /etc/bashrc
|
|||||||
RUN source /etc/bashrc
|
RUN source /etc/bashrc
|
||||||
RUN yum install -y which
|
RUN yum install -y which
|
||||||
|
|
||||||
|
RUN curl -fsSL -o patchelf.tgz https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0-$SPC_USE_ARCH.tar.gz && \
|
||||||
|
mkdir -p /patchelf && \
|
||||||
|
tar -xzf patchelf.tgz -C /patchelf --strip-components=1 && \
|
||||||
|
cp /patchelf/bin/patchelf /usr/bin/
|
||||||
|
|
||||||
RUN curl -o cmake.tgz -#fSL https://github.com/Kitware/CMake/releases/download/v3.31.4/cmake-3.31.4-linux-$SPC_USE_ARCH.tar.gz && \
|
RUN curl -o cmake.tgz -#fSL https://github.com/Kitware/CMake/releases/download/v3.31.4/cmake-3.31.4-linux-$SPC_USE_ARCH.tar.gz && \
|
||||||
mkdir /cmake && \
|
mkdir /cmake && \
|
||||||
tar -xzf cmake.tgz -C /cmake --strip-components 1
|
tar -xzf cmake.tgz -C /cmake --strip-components 1
|
||||||
@@ -169,47 +174,6 @@ if [ ! -z "$GITHUB_TOKEN" ]; then
|
|||||||
ENV_LIST="$ENV_LIST -e GITHUB_TOKEN=$GITHUB_TOKEN"
|
ENV_LIST="$ENV_LIST -e GITHUB_TOKEN=$GITHUB_TOKEN"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Intercept and rewrite --with-frankenphp-app option, and mount host path to /app/app
|
|
||||||
FRANKENPHP_APP_PATH=""
|
|
||||||
NEW_ARGS=()
|
|
||||||
while [ $# -gt 0 ]; do
|
|
||||||
case "$1" in
|
|
||||||
--with-frankenphp-app=*)
|
|
||||||
FRANKENPHP_APP_PATH="${1#*=}"
|
|
||||||
NEW_ARGS+=("--with-frankenphp-app=/app/app")
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
--with-frankenphp-app)
|
|
||||||
if [ -n "${2:-}" ]; then
|
|
||||||
FRANKENPHP_APP_PATH="$2"
|
|
||||||
NEW_ARGS+=("--with-frankenphp-app=/app/app")
|
|
||||||
shift 2
|
|
||||||
else
|
|
||||||
NEW_ARGS+=("$1")
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
NEW_ARGS+=("$1")
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
# Normalize the path and add mount if provided
|
|
||||||
if [ -n "$FRANKENPHP_APP_PATH" ]; then
|
|
||||||
# expand ~ to $HOME
|
|
||||||
if [ "${FRANKENPHP_APP_PATH#~}" != "$FRANKENPHP_APP_PATH" ]; then
|
|
||||||
FRANKENPHP_APP_PATH="$HOME${FRANKENPHP_APP_PATH#~}"
|
|
||||||
fi
|
|
||||||
# make absolute if relative
|
|
||||||
case "$FRANKENPHP_APP_PATH" in
|
|
||||||
/*) ABS_APP_PATH="$FRANKENPHP_APP_PATH" ;;
|
|
||||||
*) ABS_APP_PATH="$(pwd)/$FRANKENPHP_APP_PATH" ;;
|
|
||||||
esac
|
|
||||||
MOUNT_LIST="$MOUNT_LIST -v $ABS_APP_PATH:/app/app"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Run docker
|
# Run docker
|
||||||
# shellcheck disable=SC2068
|
# shellcheck disable=SC2068
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
@@ -232,5 +196,5 @@ if [ "$SPC_DOCKER_DEBUG" = "yes" ]; then
|
|||||||
set -ex
|
set -ex
|
||||||
$DOCKER_EXECUTABLE run $PLATFORM_ARG --privileged --rm -it $INTERACT $ENV_LIST --env-file /tmp/spc-gnu-docker.env $MOUNT_LIST cwcc-spc-gnu-$SPC_USE_ARCH-$SPC_DOCKER_VERSION /bin/bash
|
$DOCKER_EXECUTABLE run $PLATFORM_ARG --privileged --rm -it $INTERACT $ENV_LIST --env-file /tmp/spc-gnu-docker.env $MOUNT_LIST cwcc-spc-gnu-$SPC_USE_ARCH-$SPC_DOCKER_VERSION /bin/bash
|
||||||
else
|
else
|
||||||
$DOCKER_EXECUTABLE run $PLATFORM_ARG --rm $INTERACT $ENV_LIST --env-file /tmp/spc-gnu-docker.env $MOUNT_LIST cwcc-spc-gnu-$SPC_USE_ARCH-$SPC_DOCKER_VERSION bin/spc "${NEW_ARGS[@]}"
|
$DOCKER_EXECUTABLE run $PLATFORM_ARG --rm $INTERACT $ENV_LIST --env-file /tmp/spc-gnu-docker.env $MOUNT_LIST cwcc-spc-gnu-$SPC_USE_ARCH-$SPC_DOCKER_VERSION bin/spc $@
|
||||||
fi
|
fi
|
||||||
|
|||||||
496
composer.lock
generated
496
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,41 +1,40 @@
|
|||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; static-php-cli (spc) env configuration
|
; static-php-cli (spc) env configuration
|
||||||
;
|
;
|
||||||
; This file is used to set default env vars for static-php-cli build.
|
; This file is used to set default env vars for static-php-cli build.
|
||||||
; As dynamic build process, some of these vars can be overwritten by CLI options.
|
; As dynamic build process, some of these vars can be overwritten by CLI options.
|
||||||
; And you can also overwrite these vars by setting them in your shell environment.
|
; And you can also overwrite these vars by setting them in your shell environment.
|
||||||
; The value should be changed only if you know what you are doing. Otherwise, please leave them as default.
|
|
||||||
;
|
;
|
||||||
; We need to use some pre-defined internal env vars, like `BUILD_ROOT_PATH`, `DOWNLOAD_PATH`, etc.
|
; We need to use some pre-defined internal env vars, like `BUILD_ROOT_PATH`, `DOWNLOAD_PATH`, etc.
|
||||||
; Please note that these vars cannot be defined in this file, they should only be defined before static-php-cli running.
|
; Please note that these vars cannot be defined in this file, they are only be defined before static-php-cli running.
|
||||||
;
|
;
|
||||||
; Here's a list of env vars, these variables will be defined if not defined:
|
; Here's a list of env vars, these value cannot be changed anywhere:
|
||||||
;
|
;
|
||||||
|
; SPC_VERSION: the version of static-php-cli.
|
||||||
|
; WORKING_DIR: the working directory of the build process. (default: `$(pwd)`)
|
||||||
|
; ROOT_DIR: the root directory of static-php-cli. (default: `/path/to/static-php-cli`, when running in phar or micro mode: `phar://path/to/spc.phar`)
|
||||||
; BUILD_ROOT_PATH: the root path of the build process. (default: `$(pwd)/buildroot`)
|
; BUILD_ROOT_PATH: the root path of the build process. (default: `$(pwd)/buildroot`)
|
||||||
; BUILD_INCLUDE_PATH: the path of the include files. (default: `$BUILD_ROOT_PATH/include`)
|
; BUILD_INCLUDE_PATH: the path of the include files. (default: `$BUILD_ROOT_PATH/include`)
|
||||||
; BUILD_LIB_PATH: the path of the lib files. (default: `$BUILD_ROOT_PATH/lib`)
|
; BUILD_LIB_PATH: the path of the lib files. (default: `$BUILD_ROOT_PATH/lib`)
|
||||||
; BUILD_BIN_PATH: the path of the bin files. (default: `$BUILD_ROOT_PATH/bin`)
|
; BUILD_BIN_PATH: the path of the bin files. (default: `$BUILD_ROOT_PATH/bin`)
|
||||||
; BUILD_MODULES_PATH: the path of the php modules (shared extensions) files. (default: `$BUILD_ROOT_PATH/modules`)
|
; PKG_ROOT_PATH: the root path of the package files. (default: `$(pwd)/pkgroot`)
|
||||||
; PKG_ROOT_PATH: the root path of the package files. (default: `$(pwd)/pkgroot/$GNU_ARCH-{darwin|linux|windows}`)
|
|
||||||
; SOURCE_PATH: the path of the source files. (default: `$(pwd)/source`)
|
; SOURCE_PATH: the path of the source files. (default: `$(pwd)/source`)
|
||||||
; DOWNLOAD_PATH: the path of the download files. (default: `$(pwd)/downloads`)
|
; DOWNLOAD_PATH: the path of the download files. (default: `$(pwd)/downloads`)
|
||||||
; PATH: (*nix only) static-php-cli will add `$BUILD_BIN_PATH` to PATH.
|
; CPU_COUNT: the count of the CPU cores. (default: `$(nproc)`)
|
||||||
; PKG_CONFIG_PATH: (*nix only) static-php-cli will set `$BUILD_LIB_PATH/pkgconfig` to PKG_CONFIG_PATH.
|
; SPC_ARCH: the arch of the current system, for some libraries needed `--host=XXX` args. (default: `$(uname -m)`, e.g. `x86_64`, `aarch64`, `arm64`)
|
||||||
|
; GNU_ARCH: the GNU arch of the current system. (default: `$(uname -m)`, e.g. `x86_64`, `aarch64`)
|
||||||
|
; MAC_ARCH: the MAC arch of the current system. (default: `$(uname -m)`, e.g. `x86_64`, `arm64`)
|
||||||
;
|
;
|
||||||
; Here's a list of env vars, these variables is defined in SPC and cannot be changed anywhere:
|
; * These vars are only be defined in Unix (macOS, Linux, FreeBSD)Builder and cannot be changed anywhere:
|
||||||
|
; PATH: static-php-cli will add `$BUILD_BIN_PATH` to PATH.
|
||||||
|
; PKG_CONFIG: static-php-cli will set `$BUILD_BIN_PATH/pkg-config` to PKG_CONFIG.
|
||||||
|
; PKG_CONFIG_PATH: static-php-cli will set `$BUILD_LIB_PATH/pkgconfig` to PKG_CONFIG_PATH.
|
||||||
;
|
;
|
||||||
; SPC_VERSION: the version of static-php-cli.
|
; * These vars are only be defined in LinuxBuilder and cannot be changed anywhere:
|
||||||
; WORKING_DIR: the working directory of the build process. (default: `$(pwd)`)
|
; SPC_LINUX_DEFAULT_CC: the default compiler for linux. (For alpine linux: `gcc`, default: `$GNU_ARCH-linux-musl-gcc`)
|
||||||
; ROOT_DIR: the root directory of static-php-cli. (default: `/path/to/static-php-cli`, when running in phar or micro mode: `phar://path/to/spc.phar`)
|
; SPC_LINUX_DEFAULT_CXX: the default c++ compiler for linux. (For alpine linux: `g++`, default: `$GNU_ARCH-linux-musl-g++`)
|
||||||
; CPU_COUNT: the count of the CPU cores. (default: `$(nproc)`)
|
; SPC_LINUX_DEFAULT_AR: the default archiver for linux. (For alpine linux: `ar`, default: `$GNU_ARCH-linux-musl-ar`)
|
||||||
; SPC_ARCH: the arch of the current system, for some libraries needed `--host=XXX` args. (default: `$(uname -m)`, e.g. `x86_64`, `aarch64`, `arm64`)
|
; SPC_EXTRA_PHP_VARS: the extra vars for building php, used in `configure` and `make` command.
|
||||||
; GNU_ARCH: the GNU arch of the current system. (default: `$(uname -m)`, e.g. `x86_64`, `aarch64`)
|
|
||||||
; MAC_ARCH: the MAC arch of the current system. (default: `$(uname -m)`, e.g. `x86_64`, `arm64`)
|
|
||||||
; PKG_CONFIG: (*nix only) static-php-cli will set `$BUILD_BIN_PATH/pkg-config` to PKG_CONFIG.
|
|
||||||
; SPC_LINUX_DEFAULT_CC: (linux only) the default compiler for linux. (For alpine linux: `gcc`, default: `$GNU_ARCH-linux-musl-gcc`)
|
|
||||||
; SPC_LINUX_DEFAULT_CXX: (linux only) the default c++ compiler for linux. (For alpine linux: `g++`, default: `$GNU_ARCH-linux-musl-g++`)
|
|
||||||
; SPC_LINUX_DEFAULT_AR: (linux only) the default archiver for linux. (For alpine linux: `ar`, default: `$GNU_ARCH-linux-musl-ar`)
|
|
||||||
; SPC_EXTRA_PHP_VARS: (linux only) the extra vars for building php, used in `configure` and `make` command.
|
|
||||||
|
|
||||||
[global]
|
[global]
|
||||||
; Build concurrency for make -jN, default is CPU_COUNT, this value are used in every libs.
|
; Build concurrency for make -jN, default is CPU_COUNT, this value are used in every libs.
|
||||||
@@ -45,7 +44,7 @@ SPC_SKIP_PHP_VERSION_CHECK="no"
|
|||||||
; Ignore some check item for bin/spc doctor command, comma separated (e.g. SPC_SKIP_DOCTOR_CHECK_ITEMS="if homebrew has installed")
|
; Ignore some check item for bin/spc doctor command, comma separated (e.g. SPC_SKIP_DOCTOR_CHECK_ITEMS="if homebrew has installed")
|
||||||
SPC_SKIP_DOCTOR_CHECK_ITEMS=""
|
SPC_SKIP_DOCTOR_CHECK_ITEMS=""
|
||||||
; extra modules that xcaddy will include in the FrankenPHP build
|
; extra modules that xcaddy will include in the FrankenPHP build
|
||||||
SPC_CMD_VAR_FRANKENPHP_XCADDY_MODULES="--with github.com/dunglas/mercure/caddy --with github.com/dunglas/vulcain/caddy --with github.com/dunglas/caddy-cbrotli"
|
SPC_CMD_VAR_FRANKENPHP_XCADDY_MODULES="--with github.com/dunglas/frankenphp/caddy --with github.com/dunglas/mercure/caddy --with github.com/dunglas/vulcain/caddy --with github.com/dunglas/caddy-cbrotli"
|
||||||
; The display message for php version output (PHP >= 8.4 available)
|
; The display message for php version output (PHP >= 8.4 available)
|
||||||
PHP_BUILD_PROVIDER="static-php-cli ${SPC_VERSION}"
|
PHP_BUILD_PROVIDER="static-php-cli ${SPC_VERSION}"
|
||||||
|
|
||||||
@@ -75,10 +74,8 @@ SPC_MICRO_PATCHES=static_extensions_win32,cli_checks,disable_huge_page,vcruntime
|
|||||||
; - musl-native: used for alpine linux, can build `musl` and `musl -dynamic` target.
|
; - musl-native: used for alpine linux, can build `musl` and `musl -dynamic` target.
|
||||||
; - gnu-native: used for general linux distros, can build gnu target for the installed glibc version only.
|
; - gnu-native: used for general linux distros, can build gnu target for the installed glibc version only.
|
||||||
|
|
||||||
; option to specify the target, superceded by SPC_TARGET if set
|
; LEGACY option to specify the target
|
||||||
SPC_LIBC=musl
|
SPC_LIBC=musl
|
||||||
; uncomment to link libc dynamically on musl
|
|
||||||
; SPC_MUSL_DYNAMIC=true
|
|
||||||
|
|
||||||
; Recommended: specify your target here. Zig toolchain will be used.
|
; Recommended: specify your target here. Zig toolchain will be used.
|
||||||
; examples:
|
; examples:
|
||||||
@@ -112,15 +109,13 @@ SPC_CMD_PREFIX_PHP_CONFIGURE="./configure --prefix= --with-valgrind=no --disable
|
|||||||
; *** default build vars for building php ***
|
; *** default build vars for building php ***
|
||||||
; embed type for php, static (libphp.a) or shared (libphp.so)
|
; embed type for php, static (libphp.a) or shared (libphp.so)
|
||||||
SPC_CMD_VAR_PHP_EMBED_TYPE="static"
|
SPC_CMD_VAR_PHP_EMBED_TYPE="static"
|
||||||
; EXTRA_CFLAGS for `configure` and `make` php
|
; CFLAGS for configuring php
|
||||||
|
SPC_CMD_VAR_PHP_CONFIGURE_CFLAGS="${SPC_DEFAULT_C_FLAGS} -fPIE"
|
||||||
|
; EXTRA_CFLAGS for `make` php
|
||||||
SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS="-g -fstack-protector-strong -fno-ident -fPIE ${SPC_DEFAULT_C_FLAGS}"
|
SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS="-g -fstack-protector-strong -fno-ident -fPIE ${SPC_DEFAULT_C_FLAGS}"
|
||||||
; EXTRA_LDFLAGS for `make` php, can use -release to set a soname for libphp.so
|
; EXTRA_LDFLAGS for `make` php, can use -release to set a soname for libphp.so
|
||||||
SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS=""
|
SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS=""
|
||||||
|
|
||||||
; optional, path to openssl conf. This affects where openssl will look for the default CA.
|
|
||||||
; default on Debian/Alpine: /etc/ssl, default on RHEL: /etc/pki/tls
|
|
||||||
OPENSSLDIR=""
|
|
||||||
|
|
||||||
[macos]
|
[macos]
|
||||||
; build target: macho or macho (possibly we could support macho-universal in the future)
|
; build target: macho or macho (possibly we could support macho-universal in the future)
|
||||||
; Currently we do not support universal and cross-compilation for macOS.
|
; Currently we do not support universal and cross-compilation for macOS.
|
||||||
@@ -146,10 +141,10 @@ SPC_CMD_PREFIX_PHP_CONFIGURE="./configure --prefix= --with-valgrind=no --enable-
|
|||||||
; *** default build vars for building php ***
|
; *** default build vars for building php ***
|
||||||
; embed type for php, static (libphp.a) or shared (libphp.dylib)
|
; embed type for php, static (libphp.a) or shared (libphp.dylib)
|
||||||
SPC_CMD_VAR_PHP_EMBED_TYPE="static"
|
SPC_CMD_VAR_PHP_EMBED_TYPE="static"
|
||||||
; EXTRA_CFLAGS for `configure` and `make` php
|
; CFLAGS for configuring php
|
||||||
SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS="-g -fstack-protector-strong -fpic -fpie -Werror=unknown-warning-option ${SPC_DEFAULT_C_FLAGS}"
|
SPC_CMD_VAR_PHP_CONFIGURE_CFLAGS="${SPC_DEFAULT_C_FLAGS} -Werror=unknown-warning-option"
|
||||||
; minimum compatible macOS version (LLVM vars, availability not guaranteed)
|
; EXTRA_CFLAGS for `make` php
|
||||||
MACOSX_DEPLOYMENT_TARGET=12.0
|
SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS="-g -fstack-protector-strong -fpic -fpie ${SPC_DEFAULT_C_FLAGS}"
|
||||||
|
|
||||||
[freebsd]
|
[freebsd]
|
||||||
; compiler environments
|
; compiler environments
|
||||||
|
|||||||
@@ -43,14 +43,6 @@
|
|||||||
"calendar": {
|
"calendar": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
"com_dotnet": {
|
|
||||||
"support": {
|
|
||||||
"BSD": "no",
|
|
||||||
"Linux": "no",
|
|
||||||
"Darwin": "no"
|
|
||||||
},
|
|
||||||
"type": "builtin"
|
|
||||||
},
|
|
||||||
"ctype": {
|
"ctype": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
@@ -135,14 +127,6 @@
|
|||||||
"sockets"
|
"sockets"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"excimer": {
|
|
||||||
"support": {
|
|
||||||
"Windows": "wip",
|
|
||||||
"BSD": "wip"
|
|
||||||
},
|
|
||||||
"type": "external",
|
|
||||||
"source": "ext-excimer"
|
|
||||||
},
|
|
||||||
"exif": {
|
"exif": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
@@ -248,13 +232,11 @@
|
|||||||
"BSD": "wip"
|
"BSD": "wip"
|
||||||
},
|
},
|
||||||
"type": "external",
|
"type": "external",
|
||||||
"source": "ext-grpc",
|
"source": "grpc",
|
||||||
"arg-type-unix": "enable-path",
|
"arg-type-unix": "enable-path",
|
||||||
"cpp-extension": true,
|
"cpp-extension": true,
|
||||||
"lib-depends": [
|
"lib-depends": [
|
||||||
"zlib",
|
"grpc"
|
||||||
"openssl",
|
|
||||||
"libcares"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"iconv": {
|
"iconv": {
|
||||||
@@ -376,18 +358,6 @@
|
|||||||
"liblz4"
|
"liblz4"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"maxminddb": {
|
|
||||||
"support": {
|
|
||||||
"BSD": "wip",
|
|
||||||
"Windows": "wip"
|
|
||||||
},
|
|
||||||
"type": "external",
|
|
||||||
"source": "ext-maxminddb",
|
|
||||||
"arg-type": "with",
|
|
||||||
"lib-depends": [
|
|
||||||
"libmaxminddb"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"mbregex": {
|
"mbregex": {
|
||||||
"type": "builtin",
|
"type": "builtin",
|
||||||
"arg-type": "custom",
|
"arg-type": "custom",
|
||||||
@@ -426,7 +396,8 @@
|
|||||||
"ext-depends": [
|
"ext-depends": [
|
||||||
"zlib",
|
"zlib",
|
||||||
"session"
|
"session"
|
||||||
]
|
],
|
||||||
|
"build-with-php": true
|
||||||
},
|
},
|
||||||
"memcached": {
|
"memcached": {
|
||||||
"support": {
|
"support": {
|
||||||
@@ -504,40 +475,6 @@
|
|||||||
"zlib"
|
"zlib"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"mysqlnd_ed25519": {
|
|
||||||
"type": "external",
|
|
||||||
"source": "mysqlnd_ed25519",
|
|
||||||
"arg-type": "enable",
|
|
||||||
"target": [
|
|
||||||
"shared"
|
|
||||||
],
|
|
||||||
"ext-depends": [
|
|
||||||
"mysqlnd"
|
|
||||||
],
|
|
||||||
"lib-depends": [
|
|
||||||
"libsodium"
|
|
||||||
],
|
|
||||||
"lib-suggests": [
|
|
||||||
"openssl"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"mysqlnd_parsec": {
|
|
||||||
"type": "external",
|
|
||||||
"source": "mysqlnd_parsec",
|
|
||||||
"arg-type": "enable",
|
|
||||||
"target": [
|
|
||||||
"shared"
|
|
||||||
],
|
|
||||||
"ext-depends": [
|
|
||||||
"mysqlnd"
|
|
||||||
],
|
|
||||||
"lib-depends": [
|
|
||||||
"libsodium"
|
|
||||||
],
|
|
||||||
"lib-suggests": [
|
|
||||||
"openssl"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"oci8": {
|
"oci8": {
|
||||||
"type": "wip",
|
"type": "wip",
|
||||||
"support": {
|
"support": {
|
||||||
@@ -618,13 +555,6 @@
|
|||||||
"type": "builtin",
|
"type": "builtin",
|
||||||
"unix-only": true
|
"unix-only": true
|
||||||
},
|
},
|
||||||
"pcov": {
|
|
||||||
"type": "external",
|
|
||||||
"source": "pcov",
|
|
||||||
"target": [
|
|
||||||
"shared"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"pdo": {
|
"pdo": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,14 +7,12 @@
|
|||||||
"source": "php-src",
|
"source": "php-src",
|
||||||
"lib-depends": [
|
"lib-depends": [
|
||||||
"lib-base",
|
"lib-base",
|
||||||
"micro",
|
"micro"
|
||||||
"frankenphp"
|
|
||||||
],
|
],
|
||||||
"lib-depends-macos": [
|
"lib-depends-macos": [
|
||||||
"lib-base",
|
"lib-base",
|
||||||
"micro",
|
"micro",
|
||||||
"libxml2",
|
"libxml2"
|
||||||
"frankenphp"
|
|
||||||
],
|
],
|
||||||
"lib-suggests-linux": [
|
"lib-suggests-linux": [
|
||||||
"libacl",
|
"libacl",
|
||||||
@@ -26,10 +24,6 @@
|
|||||||
"watcher"
|
"watcher"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"frankenphp": {
|
|
||||||
"source": "frankenphp",
|
|
||||||
"type": "target"
|
|
||||||
},
|
|
||||||
"micro": {
|
"micro": {
|
||||||
"type": "target",
|
"type": "target",
|
||||||
"source": "micro"
|
"source": "micro"
|
||||||
@@ -104,9 +98,7 @@
|
|||||||
"ngtcp2",
|
"ngtcp2",
|
||||||
"zstd",
|
"zstd",
|
||||||
"libcares",
|
"libcares",
|
||||||
"ldap",
|
"ldap"
|
||||||
"idn2",
|
|
||||||
"krb5"
|
|
||||||
],
|
],
|
||||||
"lib-suggests-windows": [
|
"lib-suggests-windows": [
|
||||||
"brotli",
|
"brotli",
|
||||||
@@ -236,24 +228,6 @@
|
|||||||
"unicode"
|
"unicode"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"idn2": {
|
|
||||||
"source": "libidn2",
|
|
||||||
"pkg-configs": [
|
|
||||||
"libidn2"
|
|
||||||
],
|
|
||||||
"headers": [
|
|
||||||
"idn2.h"
|
|
||||||
],
|
|
||||||
"lib-suggests-unix": [
|
|
||||||
"libiconv",
|
|
||||||
"gettext",
|
|
||||||
"libunistring"
|
|
||||||
],
|
|
||||||
"lib-depends-macos": [
|
|
||||||
"libiconv",
|
|
||||||
"gettext"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"imagemagick": {
|
"imagemagick": {
|
||||||
"source": "imagemagick",
|
"source": "imagemagick",
|
||||||
"cpp-library": true,
|
"cpp-library": true,
|
||||||
@@ -301,26 +275,6 @@
|
|||||||
"jbig_ar.h"
|
"jbig_ar.h"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"krb5": {
|
|
||||||
"source": "krb5",
|
|
||||||
"pkg-configs": [
|
|
||||||
"krb5-gssapi"
|
|
||||||
],
|
|
||||||
"headers": [
|
|
||||||
"krb5.h",
|
|
||||||
"gssapi/gssapi.h"
|
|
||||||
],
|
|
||||||
"lib-depends": [
|
|
||||||
"openssl"
|
|
||||||
],
|
|
||||||
"lib-suggests": [
|
|
||||||
"ldap",
|
|
||||||
"libedit"
|
|
||||||
],
|
|
||||||
"frameworks": [
|
|
||||||
"Kerberos"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ldap": {
|
"ldap": {
|
||||||
"source": "ldap",
|
"source": "ldap",
|
||||||
"pkg-configs": [
|
"pkg-configs": [
|
||||||
@@ -361,9 +315,6 @@
|
|||||||
"source": "libargon2",
|
"source": "libargon2",
|
||||||
"static-libs-unix": [
|
"static-libs-unix": [
|
||||||
"libargon2.a"
|
"libargon2.a"
|
||||||
],
|
|
||||||
"lib-suggests": [
|
|
||||||
"libsodium"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"libavif": {
|
"libavif": {
|
||||||
@@ -509,16 +460,6 @@
|
|||||||
"liblz4.a"
|
"liblz4.a"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"libmaxminddb": {
|
|
||||||
"source": "libmaxminddb",
|
|
||||||
"static-libs-unix": [
|
|
||||||
"libmaxminddb.a"
|
|
||||||
],
|
|
||||||
"headers": [
|
|
||||||
"maxminddb.h",
|
|
||||||
"maxminddb_config.h"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"libmemcached": {
|
"libmemcached": {
|
||||||
"source": "libmemcached",
|
"source": "libmemcached",
|
||||||
"cpp-library": true,
|
"cpp-library": true,
|
||||||
@@ -565,16 +506,13 @@
|
|||||||
},
|
},
|
||||||
"librdkafka": {
|
"librdkafka": {
|
||||||
"source": "librdkafka",
|
"source": "librdkafka",
|
||||||
"pkg-configs": [
|
"static-libs-unix": [
|
||||||
"rdkafka++-static",
|
"librdkafka.a",
|
||||||
"rdkafka-static"
|
"librdkafka++.a",
|
||||||
|
"librdkafka-static.a"
|
||||||
],
|
],
|
||||||
"cpp-library": true,
|
"cpp-library": true,
|
||||||
"lib-suggests": [
|
"lib-suggests": [
|
||||||
"curl",
|
|
||||||
"liblz4",
|
|
||||||
"openssl",
|
|
||||||
"zlib",
|
|
||||||
"zstd"
|
"zstd"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -621,16 +559,6 @@
|
|||||||
"zstd"
|
"zstd"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"libunistring": {
|
|
||||||
"source": "libunistring",
|
|
||||||
"static-libs-unix": [
|
|
||||||
"libunistring.a"
|
|
||||||
],
|
|
||||||
"headers": [
|
|
||||||
"unistr.h",
|
|
||||||
"unistring/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"liburing": {
|
"liburing": {
|
||||||
"source": "liburing",
|
"source": "liburing",
|
||||||
"pkg-configs": [
|
"pkg-configs": [
|
||||||
|
|||||||
@@ -126,23 +126,13 @@
|
|||||||
},
|
},
|
||||||
"ext-event": {
|
"ext-event": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"url": "https://bitbucket.org/osmanov/pecl-event/get/3.1.4.tar.gz",
|
"url": "https://bitbucket.org/osmanov/pecl-event/get/3.0.8.tar.gz",
|
||||||
"path": "php-src/ext/event",
|
"path": "php-src/ext/event",
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ext-excimer": {
|
|
||||||
"type": "url",
|
|
||||||
"url": "https://pecl.php.net/get/excimer",
|
|
||||||
"path": "php-src/ext/excimer",
|
|
||||||
"filename": "excimer.tgz",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ext-glfw": {
|
"ext-glfw": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/mario-deluna/php-glfw",
|
"url": "https://github.com/mario-deluna/php-glfw",
|
||||||
@@ -161,18 +151,6 @@
|
|||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ext-grpc": {
|
|
||||||
"type": "url",
|
|
||||||
"url": "https://pecl.php.net/get/grpc",
|
|
||||||
"path": "php-src/ext/grpc",
|
|
||||||
"filename": "grpc.tgz",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": [
|
|
||||||
"LICENSE"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ext-imagick": {
|
"ext-imagick": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"url": "https://pecl.php.net/get/imagick",
|
"url": "https://pecl.php.net/get/imagick",
|
||||||
@@ -206,15 +184,6 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ext-maxminddb": {
|
|
||||||
"type": "url",
|
|
||||||
"url": "https://pecl.php.net/get/maxminddb",
|
|
||||||
"filename": "ext-maxminddb.tgz",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ext-memcache": {
|
"ext-memcache": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"url": "https://pecl.php.net/get/memcache",
|
"url": "https://pecl.php.net/get/memcache",
|
||||||
@@ -332,19 +301,10 @@
|
|||||||
"path": "LICENSE.MIT"
|
"path": "LICENSE.MIT"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"frankenphp": {
|
|
||||||
"type": "ghtar",
|
|
||||||
"repo": "php/frankenphp",
|
|
||||||
"prefer-stable": true,
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"freetype": {
|
"freetype": {
|
||||||
"type": "ghtagtar",
|
"type": "git",
|
||||||
"repo": "freetype/freetype",
|
"rev": "VER-2-13-2",
|
||||||
"match": "VER-2-\\d+-\\d+",
|
"url": "https://github.com/freetype/freetype",
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "LICENSE.TXT"
|
"path": "LICENSE.TXT"
|
||||||
@@ -461,16 +421,6 @@
|
|||||||
"path": "COPYING"
|
"path": "COPYING"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"krb5": {
|
|
||||||
"type": "ghtagtar",
|
|
||||||
"repo": "krb5/krb5",
|
|
||||||
"match": "krb5.+-final",
|
|
||||||
"prefer-stable": true,
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "NOTICE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ldap": {
|
"ldap": {
|
||||||
"type": "filelist",
|
"type": "filelist",
|
||||||
"url": "https://www.openldap.org/software/download/OpenLDAP/openldap-release/",
|
"url": "https://www.openldap.org/software/download/OpenLDAP/openldap-release/",
|
||||||
@@ -629,15 +579,6 @@
|
|||||||
"path": "source/COPYING"
|
"path": "source/COPYING"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libidn2": {
|
|
||||||
"type": "filelist",
|
|
||||||
"url": "https://ftp.gnu.org/gnu/libidn/",
|
|
||||||
"regex": "/href=\"(?<file>libidn2-(?<version>[^\"]+)\\.tar\\.gz)\"/",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "COPYING.LESSERv3"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libjpeg": {
|
"libjpeg": {
|
||||||
"type": "ghtar",
|
"type": "ghtar",
|
||||||
"repo": "libjpeg-turbo/libjpeg-turbo",
|
"repo": "libjpeg-turbo/libjpeg-turbo",
|
||||||
@@ -672,16 +613,6 @@
|
|||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libmaxminddb": {
|
|
||||||
"type": "ghrel",
|
|
||||||
"repo": "maxmind/libmaxminddb",
|
|
||||||
"match": "libmaxminddb-.+\\.tar\\.gz",
|
|
||||||
"prefer-stable": true,
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libmemcached": {
|
"libmemcached": {
|
||||||
"type": "ghtagtar",
|
"type": "ghtagtar",
|
||||||
"repo": "awesomized/libmemcached",
|
"repo": "awesomized/libmemcached",
|
||||||
@@ -692,10 +623,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libpng": {
|
"libpng": {
|
||||||
"type": "ghtagtar",
|
"type": "git",
|
||||||
"repo": "pnggroup/libpng",
|
"url": "https://github.com/glennrp/libpng.git",
|
||||||
"match": "v1\\.6\\.\\d+",
|
"rev": "libpng16",
|
||||||
"query": "?per_page=150",
|
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": true,
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
@@ -703,9 +633,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"librabbitmq": {
|
"librabbitmq": {
|
||||||
"type": "ghtar",
|
"type": "git",
|
||||||
"repo": "alanxz/rabbitmq-c",
|
"url": "https://github.com/alanxz/rabbitmq-c.git",
|
||||||
"prefer-stable": true,
|
"rev": "master",
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
@@ -722,7 +652,7 @@
|
|||||||
"libsodium": {
|
"libsodium": {
|
||||||
"type": "ghrel",
|
"type": "ghrel",
|
||||||
"repo": "jedisct1/libsodium",
|
"repo": "jedisct1/libsodium",
|
||||||
"match": "libsodium-(?!1\\.0\\.21)\\d+(\\.\\d+)*\\.tar\\.gz",
|
"match": "libsodium-\\d+(\\.\\d+)*\\.tar\\.gz",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": true,
|
||||||
"license": {
|
"license": {
|
||||||
@@ -750,16 +680,6 @@
|
|||||||
"path": "LICENSE.md"
|
"path": "LICENSE.md"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libunistring": {
|
|
||||||
"type": "filelist",
|
|
||||||
"url": "https://ftp.gnu.org/gnu/libunistring/",
|
|
||||||
"regex": "/href=\"(?<file>libunistring-(?<version>[^\"]+)\\.tar\\.gz)\"/",
|
|
||||||
"provide-pre-built": true,
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "COPYING.LIB"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"liburing": {
|
"liburing": {
|
||||||
"type": "ghtar",
|
"type": "ghtar",
|
||||||
"repo": "axboe/liburing",
|
"repo": "axboe/liburing",
|
||||||
@@ -773,7 +693,6 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/static-php/libuuid.git",
|
"url": "https://github.com/static-php/libuuid.git",
|
||||||
"rev": "master",
|
"rev": "master",
|
||||||
"provide-pre-built": true,
|
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "COPYING"
|
"path": "COPYING"
|
||||||
@@ -794,9 +713,8 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"libwebp": {
|
"libwebp": {
|
||||||
"type": "ghtagtar",
|
"type": "url",
|
||||||
"repo": "webmproject/libwebp",
|
"url": "https://github.com/webmproject/libwebp/archive/refs/tags/v1.3.2.tar.gz",
|
||||||
"match": "v1\\.\\d+\\.\\d+$",
|
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": true,
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
@@ -804,10 +722,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libxml2": {
|
"libxml2": {
|
||||||
"type": "ghtagtar",
|
"type": "url",
|
||||||
"repo": "GNOME/libxml2",
|
"url": "https://github.com/GNOME/libxml2/archive/refs/tags/v2.12.5.tar.gz",
|
||||||
"match": "v2\\.\\d+\\.\\d+$",
|
|
||||||
"provide-pre-built": false,
|
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "Copyright"
|
"path": "Copyright"
|
||||||
@@ -894,24 +810,6 @@
|
|||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mysqlnd_ed25519": {
|
|
||||||
"type": "pie",
|
|
||||||
"repo": "mariadb/mysqlnd_ed25519",
|
|
||||||
"path": "php-src/ext/mysqlnd_ed25519",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"mysqlnd_parsec": {
|
|
||||||
"type": "pie",
|
|
||||||
"repo": "mariadb/mysqlnd_parsec",
|
|
||||||
"path": "php-src/ext/mysqlnd_parsec",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ncurses": {
|
"ncurses": {
|
||||||
"type": "filelist",
|
"type": "filelist",
|
||||||
"url": "https://ftp.gnu.org/pub/gnu/ncurses/",
|
"url": "https://ftp.gnu.org/pub/gnu/ncurses/",
|
||||||
@@ -1007,15 +905,6 @@
|
|||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pcov": {
|
|
||||||
"type": "url",
|
|
||||||
"url": "https://pecl.php.net/get/pcov",
|
|
||||||
"filename": "pcov.tgz",
|
|
||||||
"license": {
|
|
||||||
"type": "file",
|
|
||||||
"path": "LICENSE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pdo_sqlsrv": {
|
"pdo_sqlsrv": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"url": "https://pecl.php.net/get/pdo_sqlsrv",
|
"url": "https://pecl.php.net/get/pdo_sqlsrv",
|
||||||
@@ -1213,8 +1102,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"xdebug": {
|
"xdebug": {
|
||||||
"type": "pie",
|
"type": "url",
|
||||||
"repo": "xdebug/xdebug",
|
"url": "https://pecl.php.net/get/xdebug",
|
||||||
|
"filename": "xdebug.tgz",
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import sidebarEn from "./sidebar.en";
|
import sidebarEn from "./sidebar.en";
|
||||||
import sidebarZh from "./sidebar.zh";
|
import sidebarZh from "./sidebar.zh";
|
||||||
|
import sidebarJa from "./sidebar.ja";
|
||||||
|
|
||||||
|
|
||||||
// https://vitepress.dev/reference/site-config
|
// https://vitepress.dev/reference/site-config
|
||||||
@@ -61,5 +62,19 @@ export default {
|
|||||||
indexName: 'static-php docs',
|
indexName: 'static-php docs',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
head: [
|
||||||
|
[
|
||||||
|
'script',
|
||||||
|
{ async: '', src: 'https://www.googletagmanager.com/gtag/js?id=G-0MBJ29BD7F' }
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'script',
|
||||||
|
{},
|
||||||
|
`window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
gtag('config', 'G-0MBJ29BD7F');`
|
||||||
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -549,24 +549,22 @@ otherwise it will be executed repeatedly in other events.
|
|||||||
|
|
||||||
The following are the supported `patch_point` event names and corresponding locations:
|
The following are the supported `patch_point` event names and corresponding locations:
|
||||||
|
|
||||||
| Event name | Event description |
|
| Event name | Event description |
|
||||||
|---------------------------------|----------------------------------------------------------------------------------------------------|
|
|------------------------------|----------------------------------------------------------------------------------------------------|
|
||||||
| before-libs-extract | Triggered before the dependent libraries extracted |
|
| before-libs-extract | Triggered before the dependent libraries extracted |
|
||||||
| after-libs-extract | Triggered after the compiled dependent libraries extracted |
|
| after-libs-extract | Triggered after the compiled dependent libraries extracted |
|
||||||
| before-php-extract | Triggered before PHP source code extracted |
|
| before-php-extract | Triggered before PHP source code extracted |
|
||||||
| after-php-extract | Triggered after PHP source code extracted |
|
| after-php-extract | Triggered after PHP source code extracted |
|
||||||
| before-micro-extract | Triggered before phpmicro extract |
|
| before-micro-extract | Triggered before phpmicro extract |
|
||||||
| after-micro-extract | Triggered after phpmicro extracted |
|
| after-micro-extract | Triggered after phpmicro extracted |
|
||||||
| before-exts-extract | Triggered before the extension (to be compiled) extracted to the PHP source directory |
|
| before-exts-extract | Triggered before the extension (to be compiled) extracted to the PHP source directory |
|
||||||
| after-exts-extract | Triggered after the extension extracted to the PHP source directory |
|
| after-exts-extract | Triggered after the extension extracted to the PHP source directory |
|
||||||
| before-library[*name*]-build | Triggered before the library named `name` is compiled (such as `before-library[postgresql]-build`) |
|
| before-library[*name*]-build | Triggered before the library named `name` is compiled (such as `before-library[postgresql]-build`) |
|
||||||
| after-library[*name*]-build | Triggered after the library named `name` is compiled |
|
| after-library[*name*]-build | Triggered after the library named `name` is compiled |
|
||||||
| after-shared-ext[*name*]-build | Triggered after the shared extension named `name` is compiled |
|
| before-php-buildconf | Triggered before compiling PHP command `./buildconf` |
|
||||||
| before-shared-ext[*name*]-build | Triggered before the shared extension named `name` is compiled |
|
| before-php-configure | Triggered before compiling PHP command `./configure` |
|
||||||
| before-php-buildconf | Triggered before compiling PHP command `./buildconf` |
|
| before-php-make | Triggered before compiling PHP command `make` |
|
||||||
| before-php-configure | Triggered before compiling PHP command `./configure` |
|
| before-sanity-check | Triggered after compiling PHP but before running extended checks |
|
||||||
| before-php-make | Triggered before compiling PHP command `make` |
|
|
||||||
| before-sanity-check | Triggered after compiling PHP but before running extended checks |
|
|
||||||
|
|
||||||
The following is a simple example of temporarily modifying the PHP source code.
|
The following is a simple example of temporarily modifying the PHP source code.
|
||||||
Enable the CLI function to search for the `php.ini` configuration in the current working directory:
|
Enable the CLI function to search for the `php.ini` configuration in the current working directory:
|
||||||
|
|||||||
BIN
docs/public/favicon.ico
Normal file
BIN
docs/public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
@@ -500,8 +500,6 @@ bin/spc dev:sort-config ext
|
|||||||
| after-exts-extract | 在要编译的扩展解压到 PHP 源码目录后触发 |
|
| after-exts-extract | 在要编译的扩展解压到 PHP 源码目录后触发 |
|
||||||
| before-library[*name*]-build | 在名称为 `name` 的库编译前触发(如 `before-library[postgresql]-build`) |
|
| before-library[*name*]-build | 在名称为 `name` 的库编译前触发(如 `before-library[postgresql]-build`) |
|
||||||
| after-library[*name*]-build | 在名称为 `name` 的库编译后触发 |
|
| after-library[*name*]-build | 在名称为 `name` 的库编译后触发 |
|
||||||
| after-shared-ext[*name*]-build | 在名称为 `name` 的共享扩展编译后触发(如 `after-shared-ext[redis]-build`) |
|
|
||||||
| before-shared-ext[*name*]-build | 在名称为 `name` 的共享扩展编译前触发 |
|
|
||||||
| before-php-buildconf | 在编译 PHP 命令 `./buildconf` 前触发 |
|
| before-php-buildconf | 在编译 PHP 命令 `./buildconf` 前触发 |
|
||||||
| before-php-configure | 在编译 PHP 命令 `./configure` 前触发 |
|
| before-php-configure | 在编译 PHP 命令 `./configure` 前触发 |
|
||||||
| before-php-make | 在编译 PHP 命令 `make` 前触发 |
|
| before-php-make | 在编译 PHP 命令 `make` 前触发 |
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ use Symfony\Component\Console\Application;
|
|||||||
*/
|
*/
|
||||||
final class ConsoleApplication extends Application
|
final class ConsoleApplication extends Application
|
||||||
{
|
{
|
||||||
public const string VERSION = '2.8.0';
|
public const string VERSION = '2.7.6';
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace SPC\builder;
|
namespace SPC\builder;
|
||||||
|
|
||||||
use SPC\builder\unix\UnixBuilderBase;
|
|
||||||
use SPC\exception\EnvironmentException;
|
use SPC\exception\EnvironmentException;
|
||||||
use SPC\exception\SPCException;
|
use SPC\exception\SPCException;
|
||||||
use SPC\exception\ValidationException;
|
use SPC\exception\ValidationException;
|
||||||
@@ -221,7 +220,7 @@ class Extension
|
|||||||
*/
|
*/
|
||||||
public function patchBeforeSharedMake(): bool
|
public function patchBeforeSharedMake(): bool
|
||||||
{
|
{
|
||||||
$config = (new SPCConfigUtil($this->builder))->getExtensionConfig($this);
|
$config = (new SPCConfigUtil($this->builder))->config([$this->getName()], array_map(fn ($l) => $l->getName(), $this->builder->getLibs()));
|
||||||
[$staticLibs, $sharedLibs] = $this->splitLibsIntoStaticAndShared($config['libs']);
|
[$staticLibs, $sharedLibs] = $this->splitLibsIntoStaticAndShared($config['libs']);
|
||||||
$lstdcpp = str_contains($sharedLibs, '-l:libstdc++.a') ? '-l:libstdc++.a' : null;
|
$lstdcpp = str_contains($sharedLibs, '-l:libstdc++.a') ? '-l:libstdc++.a' : null;
|
||||||
$lstdcpp ??= str_contains($sharedLibs, '-lstdc++') ? '-lstdc++' : '';
|
$lstdcpp ??= str_contains($sharedLibs, '-lstdc++') ? '-lstdc++' : '';
|
||||||
@@ -385,9 +384,6 @@ class Extension
|
|||||||
logger()->info('Shared extension [' . $this->getName() . '] was already built, skipping (' . $this->getName() . '.so)');
|
logger()->info('Shared extension [' . $this->getName() . '] was already built, skipping (' . $this->getName() . '.so)');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((string) Config::getExt($this->getName(), 'type') === 'addon') {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
logger()->info('Building extension [' . $this->getName() . '] as shared extension (' . $this->getName() . '.so)');
|
logger()->info('Building extension [' . $this->getName() . '] as shared extension (' . $this->getName() . '.so)');
|
||||||
foreach ($this->dependencies as $dependency) {
|
foreach ($this->dependencies as $dependency) {
|
||||||
if (!$dependency instanceof Extension) {
|
if (!$dependency instanceof Extension) {
|
||||||
@@ -398,12 +394,13 @@ class Extension
|
|||||||
$dependency->buildShared([...$visited, $this->getName()]);
|
$dependency->buildShared([...$visited, $this->getName()]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$this->builder->emitPatchPoint('before-shared-ext[' . $this->getName() . ']-build');
|
if (Config::getExt($this->getName(), 'type') === 'addon') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
match (PHP_OS_FAMILY) {
|
match (PHP_OS_FAMILY) {
|
||||||
'Darwin', 'Linux' => $this->buildUnixShared(),
|
'Darwin', 'Linux' => $this->buildUnixShared(),
|
||||||
default => throw new WrongUsageException(PHP_OS_FAMILY . ' build shared extensions is not supported yet'),
|
default => throw new WrongUsageException(PHP_OS_FAMILY . ' build shared extensions is not supported yet'),
|
||||||
};
|
};
|
||||||
$this->builder->emitPatchPoint('after-shared-ext[' . $this->getName() . ']-build');
|
|
||||||
} catch (SPCException $e) {
|
} catch (SPCException $e) {
|
||||||
$e->bindExtensionInfo(['extension_name' => $this->getName()]);
|
$e->bindExtensionInfo(['extension_name' => $this->getName()]);
|
||||||
throw $e;
|
throw $e;
|
||||||
@@ -451,20 +448,6 @@ class Extension
|
|||||||
->exec('make clean')
|
->exec('make clean')
|
||||||
->exec('make -j' . $this->builder->concurrency)
|
->exec('make -j' . $this->builder->concurrency)
|
||||||
->exec('make install');
|
->exec('make install');
|
||||||
|
|
||||||
// process *.so file
|
|
||||||
$soFile = BUILD_MODULES_PATH . '/' . $this->getName() . '.so';
|
|
||||||
$soDest = $soFile;
|
|
||||||
preg_match('/-release\s+(\S*)/', getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS'), $matches);
|
|
||||||
if (!empty($matches[1])) {
|
|
||||||
$soDest = str_replace('.so', '-' . $matches[1] . '.so', $soFile);
|
|
||||||
}
|
|
||||||
if (!file_exists($soFile)) {
|
|
||||||
throw new ValidationException("extension {$this->getName()} build failed: {$soFile} not found", validation_module: "Extension {$this->getName()} build");
|
|
||||||
}
|
|
||||||
/** @var UnixBuilderBase $builder */
|
|
||||||
$builder = $this->builder;
|
|
||||||
$builder->deployBinary($soFile, $soDest, false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -503,46 +486,18 @@ class Extension
|
|||||||
return $this->build_static;
|
return $this->build_static;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the library dependencies that current extension depends on.
|
|
||||||
*
|
|
||||||
* @param bool $recursive Whether it includes dependencies recursively
|
|
||||||
*/
|
|
||||||
public function getLibraryDependencies(bool $recursive = false): array
|
|
||||||
{
|
|
||||||
$ret = array_filter($this->dependencies, fn ($x) => $x instanceof LibraryBase);
|
|
||||||
if (!$recursive) {
|
|
||||||
return $ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
$deps = [];
|
|
||||||
|
|
||||||
$added = 1;
|
|
||||||
while ($added !== 0) {
|
|
||||||
$added = 0;
|
|
||||||
foreach ($ret as $depName => $dep) {
|
|
||||||
foreach ($dep->getDependencies(true) as $depdepName => $depdep) {
|
|
||||||
if (!array_key_exists($depdepName, $deps)) {
|
|
||||||
$deps[$depdepName] = $depdep;
|
|
||||||
++$added;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!array_key_exists($depName, $deps)) {
|
|
||||||
$deps[$depName] = $dep;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $deps;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the environment variables a shared extension needs to be built.
|
* Returns the environment variables a shared extension needs to be built.
|
||||||
* CFLAGS, CXXFLAGS, LDFLAGS and so on.
|
* CFLAGS, CXXFLAGS, LDFLAGS and so on.
|
||||||
*/
|
*/
|
||||||
protected function getSharedExtensionEnv(): array
|
protected function getSharedExtensionEnv(): array
|
||||||
{
|
{
|
||||||
$config = (new SPCConfigUtil($this->builder, ['no_php' => true]))->getExtensionConfig($this);
|
$config = (new SPCConfigUtil($this->builder))->config(
|
||||||
|
[$this->getName()],
|
||||||
|
array_map(fn ($l) => $l->getName(), $this->getLibraryDependencies(recursive: true)),
|
||||||
|
$this->builder->getOption('with-suggested-exts'),
|
||||||
|
$this->builder->getOption('with-suggested-libs'),
|
||||||
|
);
|
||||||
[$staticLibs, $sharedLibs] = $this->splitLibsIntoStaticAndShared($config['libs']);
|
[$staticLibs, $sharedLibs] = $this->splitLibsIntoStaticAndShared($config['libs']);
|
||||||
$preStatic = PHP_OS_FAMILY === 'Darwin' ? '' : '-Wl,--start-group ';
|
$preStatic = PHP_OS_FAMILY === 'Darwin' ? '' : '-Wl,--start-group ';
|
||||||
$postStatic = PHP_OS_FAMILY === 'Darwin' ? '' : ' -Wl,--end-group ';
|
$postStatic = PHP_OS_FAMILY === 'Darwin' ? '' : ' -Wl,--end-group ';
|
||||||
@@ -550,7 +505,6 @@ class Extension
|
|||||||
'CFLAGS' => $config['cflags'],
|
'CFLAGS' => $config['cflags'],
|
||||||
'CXXFLAGS' => $config['cflags'],
|
'CXXFLAGS' => $config['cflags'],
|
||||||
'LDFLAGS' => $config['ldflags'],
|
'LDFLAGS' => $config['ldflags'],
|
||||||
'EXTRA_LDFLAGS' => getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS'),
|
|
||||||
'LIBS' => clean_spaces("{$preStatic} {$staticLibs} {$postStatic} {$sharedLibs}"),
|
'LIBS' => clean_spaces("{$preStatic} {$staticLibs} {$postStatic} {$sharedLibs}"),
|
||||||
'LD_LIBRARY_PATH' => BUILD_LIB_PATH,
|
'LD_LIBRARY_PATH' => BUILD_LIB_PATH,
|
||||||
];
|
];
|
||||||
@@ -565,7 +519,7 @@ class Extension
|
|||||||
}
|
}
|
||||||
logger()->info("enabling {$this->name} without library {$name}");
|
logger()->info("enabling {$this->name} without library {$name}");
|
||||||
} else {
|
} else {
|
||||||
$this->dependencies[$name] = $depLib;
|
$this->dependencies[] = $depLib;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -578,7 +532,7 @@ class Extension
|
|||||||
}
|
}
|
||||||
logger()->info("enabling {$this->name} without extension {$name}");
|
logger()->info("enabling {$this->name} without extension {$name}");
|
||||||
} else {
|
} else {
|
||||||
$this->dependencies[$name] = $depExt;
|
$this->dependencies[] = $depExt;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -613,4 +567,37 @@ class Extension
|
|||||||
}
|
}
|
||||||
return [trim($staticLibString), trim($sharedLibString)];
|
return [trim($staticLibString), trim($sharedLibString)];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function getLibraryDependencies(bool $recursive = false): array
|
||||||
|
{
|
||||||
|
$ret = array_filter($this->dependencies, fn ($x) => $x instanceof LibraryBase);
|
||||||
|
if (!$recursive) {
|
||||||
|
return $ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
$deps = [];
|
||||||
|
|
||||||
|
$added = 1;
|
||||||
|
while ($added !== 0) {
|
||||||
|
$added = 0;
|
||||||
|
foreach ($ret as $depName => $dep) {
|
||||||
|
foreach ($dep->getDependencies(true) as $depdepName => $depdep) {
|
||||||
|
if (!array_key_exists($depdepName, $deps)) {
|
||||||
|
$deps[$depdepName] = $depdep;
|
||||||
|
++$added;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!array_key_exists($depName, $deps)) {
|
||||||
|
$deps[$depName] = $dep;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (array_key_exists(0, $deps)) {
|
||||||
|
$zero = [0 => $deps[0]];
|
||||||
|
unset($deps[0]);
|
||||||
|
return $zero + $deps;
|
||||||
|
}
|
||||||
|
return $deps;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -184,18 +184,18 @@ abstract class LibraryBase
|
|||||||
|
|
||||||
// extract first if not exists
|
// extract first if not exists
|
||||||
if (!is_dir($this->source_dir)) {
|
if (!is_dir($this->source_dir)) {
|
||||||
$this->getBuilder()->emitPatchPoint('before-library[' . static::NAME . ']-extract');
|
$this->getBuilder()->emitPatchPoint('before-library[ ' . static::NAME . ']-extract');
|
||||||
SourceManager::initSource(libs: [static::NAME], source_only: true);
|
SourceManager::initSource(libs: [static::NAME], source_only: true);
|
||||||
$this->getBuilder()->emitPatchPoint('after-library[' . static::NAME . ']-extract');
|
$this->getBuilder()->emitPatchPoint('after-library[ ' . static::NAME . ']-extract');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$this->patched && $this->patchBeforeBuild()) {
|
if (!$this->patched && $this->patchBeforeBuild()) {
|
||||||
file_put_contents($this->source_dir . '/.spc.patched', 'PATCHED!!!');
|
file_put_contents($this->source_dir . '/.spc.patched', 'PATCHED!!!');
|
||||||
}
|
}
|
||||||
$this->getBuilder()->emitPatchPoint('before-library[' . static::NAME . ']-build');
|
$this->getBuilder()->emitPatchPoint('before-library[ ' . static::NAME . ']-build');
|
||||||
$this->build();
|
$this->build();
|
||||||
$this->installLicense();
|
$this->installLicense();
|
||||||
$this->getBuilder()->emitPatchPoint('after-library[' . static::NAME . ']-build');
|
$this->getBuilder()->emitPatchPoint('after-library[ ' . static::NAME . ']-build');
|
||||||
return LIB_STATUS_OK;
|
return LIB_STATUS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -346,19 +346,19 @@ abstract class LibraryBase
|
|||||||
*/
|
*/
|
||||||
protected function installLicense(): void
|
protected function installLicense(): void
|
||||||
{
|
{
|
||||||
|
FileSystem::createDir(BUILD_ROOT_PATH . '/source-licenses/' . $this->getName());
|
||||||
$source = Config::getLib($this->getName(), 'source');
|
$source = Config::getLib($this->getName(), 'source');
|
||||||
FileSystem::createDir(BUILD_ROOT_PATH . "/source-licenses/{$source}");
|
|
||||||
$license_files = Config::getSource($source)['license'] ?? [];
|
$license_files = Config::getSource($source)['license'] ?? [];
|
||||||
if (is_assoc_array($license_files)) {
|
if (is_assoc_array($license_files)) {
|
||||||
$license_files = [$license_files];
|
$license_files = [$license_files];
|
||||||
}
|
}
|
||||||
foreach ($license_files as $index => $license) {
|
foreach ($license_files as $index => $license) {
|
||||||
if ($license['type'] === 'text') {
|
if ($license['type'] === 'text') {
|
||||||
FileSystem::writeFile(BUILD_ROOT_PATH . "/source-licenses/{$source}/{$index}.txt", $license['text']);
|
FileSystem::writeFile(BUILD_ROOT_PATH . '/source-licenses/' . $this->getName() . "/{$index}.txt", $license['text']);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ($license['type'] === 'file') {
|
if ($license['type'] === 'file') {
|
||||||
copy($this->source_dir . '/' . $license['path'], BUILD_ROOT_PATH . "/source-licenses/{$source}/{$index}.txt");
|
copy($this->source_dir . '/' . $license['path'], BUILD_ROOT_PATH . '/source-licenses/' . $this->getName() . "/{$index}.txt");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -375,17 +375,8 @@ abstract class LibraryBase
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$pkg_config_path = getenv('PKG_CONFIG_PATH') ?: '';
|
|
||||||
$search_paths = array_filter(explode(is_unix() ? ':' : ';', $pkg_config_path));
|
|
||||||
foreach (Config::getLib(static::NAME, 'pkg-configs', []) as $name) {
|
foreach (Config::getLib(static::NAME, 'pkg-configs', []) as $name) {
|
||||||
$found = false;
|
if (!file_exists(BUILD_LIB_PATH . "/pkgconfig/{$name}.pc")) {
|
||||||
foreach ($search_paths as $path) {
|
|
||||||
if (file_exists($path . "/{$name}.pc")) {
|
|
||||||
$found = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!$found) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\extension;
|
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
|
||||||
use SPC\util\CustomExt;
|
|
||||||
|
|
||||||
#[CustomExt('com_dotnet')]
|
|
||||||
class com_dotnet extends Extension
|
|
||||||
{
|
|
||||||
public function getWindowsConfigureArg(bool $shared = false): string
|
|
||||||
{
|
|
||||||
return '--enable-com-dotnet=yes';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -21,14 +21,18 @@ class grpc extends Extension
|
|||||||
if ($this->builder instanceof WindowsBuilder) {
|
if ($this->builder instanceof WindowsBuilder) {
|
||||||
throw new ValidationException('grpc extension does not support windows yet');
|
throw new ValidationException('grpc extension does not support windows yet');
|
||||||
}
|
}
|
||||||
FileSystem::replaceFileStr(
|
if (file_exists(SOURCE_PATH . '/php-src/ext/grpc')) {
|
||||||
$this->source_dir . '/src/php/ext/grpc/call.c',
|
return false;
|
||||||
'zend_exception_get_default(TSRMLS_C),',
|
}
|
||||||
'zend_ce_exception,',
|
// soft link to the grpc source code
|
||||||
);
|
if (is_dir($this->source_dir . '/src/php/ext/grpc')) {
|
||||||
|
shell()->exec('ln -s ' . $this->source_dir . '/src/php/ext/grpc ' . SOURCE_PATH . '/php-src/ext/grpc');
|
||||||
|
} else {
|
||||||
|
throw new ValidationException('Cannot find grpc source code in ' . $this->source_dir . '/src/php/ext/grpc');
|
||||||
|
}
|
||||||
if (SPCTarget::getTargetOS() === 'Darwin') {
|
if (SPCTarget::getTargetOS() === 'Darwin') {
|
||||||
FileSystem::replaceFileRegex(
|
FileSystem::replaceFileRegex(
|
||||||
$this->source_dir . '/config.m4',
|
SOURCE_PATH . '/php-src/ext/grpc/config.m4',
|
||||||
'/GRPC_LIBDIR=.*$/m',
|
'/GRPC_LIBDIR=.*$/m',
|
||||||
'GRPC_LIBDIR=' . BUILD_LIB_PATH . "\n" . 'LDFLAGS="$LDFLAGS -framework CoreFoundation"'
|
'GRPC_LIBDIR=' . BUILD_LIB_PATH . "\n" . 'LDFLAGS="$LDFLAGS -framework CoreFoundation"'
|
||||||
);
|
);
|
||||||
@@ -39,7 +43,7 @@ class grpc extends Extension
|
|||||||
public function patchBeforeConfigure(): bool
|
public function patchBeforeConfigure(): bool
|
||||||
{
|
{
|
||||||
$util = new SPCConfigUtil($this->builder, ['libs_only_deps' => true]);
|
$util = new SPCConfigUtil($this->builder, ['libs_only_deps' => true]);
|
||||||
$config = $util->getExtensionConfig($this);
|
$config = $util->config(['grpc']);
|
||||||
$libs = $config['libs'];
|
$libs = $config['libs'];
|
||||||
FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/configure', '-lgrpc', $libs);
|
FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/configure', '-lgrpc', $libs);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ declare(strict_types=1);
|
|||||||
namespace SPC\builder\extension;
|
namespace SPC\builder\extension;
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
use SPC\builder\Extension;
|
||||||
use SPC\toolchain\ToolchainManager;
|
|
||||||
use SPC\toolchain\ZigToolchain;
|
|
||||||
use SPC\util\CustomExt;
|
use SPC\util\CustomExt;
|
||||||
|
|
||||||
#[CustomExt('imagick')]
|
#[CustomExt('imagick')]
|
||||||
@@ -21,9 +19,7 @@ class imagick extends Extension
|
|||||||
protected function splitLibsIntoStaticAndShared(string $allLibs): array
|
protected function splitLibsIntoStaticAndShared(string $allLibs): array
|
||||||
{
|
{
|
||||||
[$static, $shared] = parent::splitLibsIntoStaticAndShared($allLibs);
|
[$static, $shared] = parent::splitLibsIntoStaticAndShared($allLibs);
|
||||||
if (ToolchainManager::getToolchainClass() !== ZigToolchain::class &&
|
if (str_contains(getenv('PATH'), 'rh/devtoolset') || str_contains(getenv('PATH'), 'rh/gcc-toolset')) {
|
||||||
(str_contains(getenv('PATH'), 'rh/devtoolset') || str_contains(getenv('PATH'), 'rh/gcc-toolset'))
|
|
||||||
) {
|
|
||||||
$static .= ' -l:libstdc++.a';
|
$static .= ' -l:libstdc++.a';
|
||||||
$shared = str_replace('-lstdc++', '', $shared);
|
$shared = str_replace('-lstdc++', '', $shared);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\extension;
|
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
|
||||||
use SPC\store\FileSystem;
|
|
||||||
use SPC\util\CustomExt;
|
|
||||||
|
|
||||||
#[CustomExt('maxminddb')]
|
|
||||||
class maxminddb extends Extension
|
|
||||||
{
|
|
||||||
public function patchBeforeBuildconf(): bool
|
|
||||||
{
|
|
||||||
if (!is_dir(SOURCE_PATH . '/php-src/ext/maxminddb')) {
|
|
||||||
$original = $this->source_dir;
|
|
||||||
FileSystem::copyDir($original . '/ext', SOURCE_PATH . '/php-src/ext/maxminddb');
|
|
||||||
$this->source_dir = SOURCE_PATH . '/php-src/ext/maxminddb';
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
$this->source_dir = SOURCE_PATH . '/php-src/ext/maxminddb';
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -18,9 +18,6 @@ class memcache extends Extension
|
|||||||
|
|
||||||
public function patchBeforeBuildconf(): bool
|
public function patchBeforeBuildconf(): bool
|
||||||
{
|
{
|
||||||
if (!$this->isBuildStatic()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
FileSystem::replaceFileStr(
|
FileSystem::replaceFileStr(
|
||||||
SOURCE_PATH . '/php-src/ext/memcache/config9.m4',
|
SOURCE_PATH . '/php-src/ext/memcache/config9.m4',
|
||||||
'if test -d $abs_srcdir/src ; then',
|
'if test -d $abs_srcdir/src ; then',
|
||||||
@@ -46,27 +43,4 @@ EOF
|
|||||||
);
|
);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function patchBeforeSharedConfigure(): bool
|
|
||||||
{
|
|
||||||
if (!$this->isBuildShared()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
FileSystem::replaceFileStr(
|
|
||||||
SOURCE_PATH . '/php-src/ext/memcache/config9.m4',
|
|
||||||
'if test -d $abs_srcdir/main ; then',
|
|
||||||
'if test -d $abs_srcdir/src ; then',
|
|
||||||
);
|
|
||||||
FileSystem::replaceFileStr(
|
|
||||||
SOURCE_PATH . '/php-src/ext/memcache/config9.m4',
|
|
||||||
'export CPPFLAGS="$CPPFLAGS $INCLUDES -I$abs_srcdir/main"',
|
|
||||||
'export CPPFLAGS="$CPPFLAGS $INCLUDES"',
|
|
||||||
);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function getExtraEnv(): array
|
|
||||||
{
|
|
||||||
return ['CFLAGS' => '-std=c17'];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,9 +24,4 @@ class mongodb extends Extension
|
|||||||
$arg .= $this->builder->getLib('zlib') ? ' --with-mongodb-zlib=yes ' : ' --with-mongodb-zlib=bundled ';
|
$arg .= $this->builder->getLib('zlib') ? ' --with-mongodb-zlib=yes ' : ' --with-mongodb-zlib=bundled ';
|
||||||
return clean_spaces($arg);
|
return clean_spaces($arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getExtraEnv(): array
|
|
||||||
{
|
|
||||||
return ['CFLAGS' => '-std=c17'];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\extension;
|
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
|
||||||
use SPC\util\CustomExt;
|
|
||||||
|
|
||||||
#[CustomExt('mysqlnd_ed25519')]
|
|
||||||
class mysqlnd_ed25519 extends Extension
|
|
||||||
{
|
|
||||||
public function getConfigureArg(bool $shared = false): string
|
|
||||||
{
|
|
||||||
return '--with-mysqlnd_ed25519' . ($shared ? '=shared' : '');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getUnixConfigureArg(bool $shared = false): string
|
|
||||||
{
|
|
||||||
return $this->getConfigureArg();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\extension;
|
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
|
||||||
use SPC\util\CustomExt;
|
|
||||||
|
|
||||||
#[CustomExt('mysqlnd_parsec')]
|
|
||||||
class mysqlnd_parsec extends Extension
|
|
||||||
{
|
|
||||||
public function getConfigureArg(bool $shared = false): string
|
|
||||||
{
|
|
||||||
return '--enable-mysqlnd_parsec' . ($shared ? '=shared' : '');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getUnixConfigureArg(bool $shared = false): string
|
|
||||||
{
|
|
||||||
return $this->getConfigureArg();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -24,6 +24,25 @@ class password_argon2 extends Extension
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function patchBeforeMake(): bool
|
||||||
|
{
|
||||||
|
$patched = parent::patchBeforeMake();
|
||||||
|
if ($this->builder->getLib('libsodium') !== null) {
|
||||||
|
$extraLibs = getenv('SPC_EXTRA_LIBS');
|
||||||
|
if ($extraLibs !== false) {
|
||||||
|
$extraLibs = str_replace(
|
||||||
|
[BUILD_LIB_PATH . '/libargon2.a', BUILD_LIB_PATH . '/libsodium.a'],
|
||||||
|
['', BUILD_LIB_PATH . '/libargon2.a ' . BUILD_LIB_PATH . '/libsodium.a'],
|
||||||
|
$extraLibs,
|
||||||
|
);
|
||||||
|
$extraLibs = trim(preg_replace('/\s+/', ' ', $extraLibs)); // normalize spacing
|
||||||
|
f_putenv('SPC_EXTRA_LIBS=' . $extraLibs);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $patched;
|
||||||
|
}
|
||||||
|
|
||||||
public function getConfigureArg(bool $shared = false): string
|
public function getConfigureArg(bool $shared = false): string
|
||||||
{
|
{
|
||||||
if ($this->builder->getLib('openssl') !== null) {
|
if ($this->builder->getLib('openssl') !== null) {
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ class pgsql extends Extension
|
|||||||
protected function getExtraEnv(): array
|
protected function getExtraEnv(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'CFLAGS' => '-std=c17 -Wno-int-conversion',
|
'CFLAGS' => '-Wno-int-conversion',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ namespace SPC\builder\extension;
|
|||||||
use SPC\builder\Extension;
|
use SPC\builder\Extension;
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\util\CustomExt;
|
use SPC\util\CustomExt;
|
||||||
use SPC\util\SPCConfigUtil;
|
|
||||||
|
|
||||||
#[CustomExt('rdkafka')]
|
#[CustomExt('rdkafka')]
|
||||||
class rdkafka extends Extension
|
class rdkafka extends Extension
|
||||||
@@ -16,7 +15,6 @@ class rdkafka extends Extension
|
|||||||
{
|
{
|
||||||
FileSystem::replaceFileStr("{$this->source_dir}/config.m4", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm\n", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm \$RDKAFKA_LIBS\n");
|
FileSystem::replaceFileStr("{$this->source_dir}/config.m4", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm\n", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm \$RDKAFKA_LIBS\n");
|
||||||
FileSystem::replaceFileStr("{$this->source_dir}/config.m4", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm\"\n", '-L$RDKAFKA_DIR/$PHP_LIBDIR -lm $RDKAFKA_LIBS"');
|
FileSystem::replaceFileStr("{$this->source_dir}/config.m4", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm\"\n", '-L$RDKAFKA_DIR/$PHP_LIBDIR -lm $RDKAFKA_LIBS"');
|
||||||
FileSystem::replaceFileStr("{$this->source_dir}/config.m4", 'PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,', 'AC_CHECK_LIB([$LIBNAME], [$LIBSYMBOL],');
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,7 +37,8 @@ class rdkafka extends Extension
|
|||||||
|
|
||||||
public function getUnixConfigureArg(bool $shared = false): string
|
public function getUnixConfigureArg(bool $shared = false): string
|
||||||
{
|
{
|
||||||
$pkgconf_libs = (new SPCConfigUtil($this->builder, ['no_php' => true, 'libs_only_deps' => true]))->getExtensionConfig($this);
|
$pkgconf_libs = shell()->execWithResult('pkg-config --libs --static rdkafka')[1];
|
||||||
return '--with-rdkafka=' . ($shared ? 'shared,' : '') . BUILD_ROOT_PATH . " RDKAFKA_LIBS=\"{$pkgconf_libs['libs']}\"";
|
$pkgconf_libs = trim(implode('', $pkgconf_libs));
|
||||||
|
return '--with-rdkafka=' . ($shared ? 'shared,' : '') . BUILD_ROOT_PATH . ' RDKAFKA_LIBS="' . $pkgconf_libs . '"';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,11 +45,4 @@ class spx extends Extension
|
|||||||
FileSystem::copy($this->source_dir . '/src/php_spx.h', $this->source_dir . '/php_spx.h');
|
FileSystem::copy($this->source_dir . '/src/php_spx.h', $this->source_dir . '/php_spx.h');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getSharedExtensionEnv(): array
|
|
||||||
{
|
|
||||||
$env = parent::getSharedExtensionEnv();
|
|
||||||
$env['SPX_SHARED_LIBADD'] = $env['LIBS'];
|
|
||||||
return $env;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ class swoole extends Extension
|
|||||||
public function patchBeforeMake(): bool
|
public function patchBeforeMake(): bool
|
||||||
{
|
{
|
||||||
$patched = parent::patchBeforeMake();
|
$patched = parent::patchBeforeMake();
|
||||||
FileSystem::replaceFileStr($this->source_dir . '/ext-src/php_swoole_private.h', 'PHP_VERSION_ID > 80500', 'PHP_VERSION_ID >= 80600');
|
|
||||||
if ($this->builder instanceof MacOSBuilder) {
|
if ($this->builder instanceof MacOSBuilder) {
|
||||||
// Fix swoole with event extension <util.h> conflict bug
|
// Fix swoole with event extension <util.h> conflict bug
|
||||||
$util_path = shell()->execWithResult('xcrun --show-sdk-path', false)[1][0] . '/usr/include/util.h';
|
$util_path = shell()->execWithResult('xcrun --show-sdk-path', false)[1][0] . '/usr/include/util.h';
|
||||||
@@ -71,7 +70,7 @@ class swoole extends Extension
|
|||||||
$arg .= $this->builder->getExt('swoole-hook-mysql') ? ' --enable-mysqlnd' : ' --disable-mysqlnd';
|
$arg .= $this->builder->getExt('swoole-hook-mysql') ? ' --enable-mysqlnd' : ' --disable-mysqlnd';
|
||||||
$arg .= $this->builder->getExt('swoole-hook-sqlite') ? ' --enable-swoole-sqlite' : ' --disable-swoole-sqlite';
|
$arg .= $this->builder->getExt('swoole-hook-sqlite') ? ' --enable-swoole-sqlite' : ' --disable-swoole-sqlite';
|
||||||
if ($this->builder->getExt('swoole-hook-odbc')) {
|
if ($this->builder->getExt('swoole-hook-odbc')) {
|
||||||
$config = (new SPCConfigUtil($this->builder))->getLibraryConfig($this->builder->getLib('unixodbc'));
|
$config = (new SPCConfigUtil($this->builder, ['libs_only_deps' => true]))->config([], ['unixodbc']);
|
||||||
$arg .= ' --with-swoole-odbc=unixODBC,' . BUILD_ROOT_PATH . ' SWOOLE_ODBC_LIBS="' . $config['libs'] . '"';
|
$arg .= ' --with-swoole-odbc=unixODBC,' . BUILD_ROOT_PATH . ' SWOOLE_ODBC_LIBS="' . $config['libs'] . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\extension;
|
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
|
||||||
use SPC\store\FileSystem;
|
|
||||||
use SPC\util\CustomExt;
|
|
||||||
|
|
||||||
#[CustomExt('trader')]
|
|
||||||
class trader extends Extension
|
|
||||||
{
|
|
||||||
public function patchBeforeBuildconf(): bool
|
|
||||||
{
|
|
||||||
FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/ext/trader/config.m4', 'PHP_TA', 'PHP_TRADER');
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -153,7 +153,7 @@ class BSDBuilder extends UnixBuilderBase
|
|||||||
if (!$this->getOption('no-strip', false)) {
|
if (!$this->getOption('no-strip', false)) {
|
||||||
$shell->exec('strip sapi/cli/php');
|
$shell->exec('strip sapi/cli/php');
|
||||||
}
|
}
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CLI);
|
$this->deployBinary(BUILD_TARGET_CLI);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -184,7 +184,7 @@ class BSDBuilder extends UnixBuilderBase
|
|||||||
if (!$this->getOption('no-strip', false)) {
|
if (!$this->getOption('no-strip', false)) {
|
||||||
shell()->cd(SOURCE_PATH . '/php-src/sapi/micro')->exec('strip --strip-unneeded micro.sfx');
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/micro')->exec('strip --strip-unneeded micro.sfx');
|
||||||
}
|
}
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_MICRO);
|
$this->deployBinary(BUILD_TARGET_MICRO);
|
||||||
|
|
||||||
if ($this->phar_patched) {
|
if ($this->phar_patched) {
|
||||||
SourcePatcher::unpatchMicroPhar();
|
SourcePatcher::unpatchMicroPhar();
|
||||||
@@ -206,7 +206,7 @@ class BSDBuilder extends UnixBuilderBase
|
|||||||
if (!$this->getOption('no-strip', false)) {
|
if (!$this->getOption('no-strip', false)) {
|
||||||
$shell->exec('strip sapi/fpm/php-fpm');
|
$shell->exec('strip sapi/fpm/php-fpm');
|
||||||
}
|
}
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_FPM);
|
$this->deployBinary(BUILD_TARGET_FPM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ use SPC\builder\unix\UnixBuilderBase;
|
|||||||
use SPC\exception\PatchException;
|
use SPC\exception\PatchException;
|
||||||
use SPC\exception\WrongUsageException;
|
use SPC\exception\WrongUsageException;
|
||||||
use SPC\store\Config;
|
use SPC\store\Config;
|
||||||
use SPC\store\DirDiff;
|
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\store\SourcePatcher;
|
use SPC\store\SourcePatcher;
|
||||||
use SPC\util\GlobalEnvManager;
|
use SPC\util\GlobalEnvManager;
|
||||||
@@ -91,7 +90,7 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
// prepare build php envs
|
// prepare build php envs
|
||||||
// $musl_flag = SPCTarget::getLibc() === 'musl' ? ' -D__MUSL__' : ' -U__MUSL__';
|
// $musl_flag = SPCTarget::getLibc() === 'musl' ? ' -D__MUSL__' : ' -U__MUSL__';
|
||||||
$php_configure_env = SystemUtil::makeEnvVarString([
|
$php_configure_env = SystemUtil::makeEnvVarString([
|
||||||
'CFLAGS' => getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS'),
|
'CFLAGS' => getenv('SPC_CMD_VAR_PHP_CONFIGURE_CFLAGS'),
|
||||||
'CPPFLAGS' => '-I' . BUILD_INCLUDE_PATH, // . ' -Dsomethinghere', // . $musl_flag,
|
'CPPFLAGS' => '-I' . BUILD_INCLUDE_PATH, // . ' -Dsomethinghere', // . $musl_flag,
|
||||||
'LDFLAGS' => '-L' . BUILD_LIB_PATH,
|
'LDFLAGS' => '-L' . BUILD_LIB_PATH,
|
||||||
// 'LIBS' => SPCTarget::getRuntimeLibs(), // do not pass static libraries here yet, they may contain polyfills for libc functions!
|
// 'LIBS' => SPCTarget::getRuntimeLibs(), // do not pass static libraries here yet, they may contain polyfills for libc functions!
|
||||||
@@ -195,7 +194,15 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
SourcePatcher::patchFile('musl_static_readline.patch', SOURCE_PATH . '/php-src', true);
|
SourcePatcher::patchFile('musl_static_readline.patch', SOURCE_PATH . '/php-src', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CLI);
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/cli')->exec('strip --strip-unneeded php');
|
||||||
|
}
|
||||||
|
if ($this->getOption('with-upx-pack')) {
|
||||||
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/cli')
|
||||||
|
->exec(getenv('UPX_EXEC') . ' --best php');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->deployBinary(BUILD_TARGET_CLI);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function buildCgi(): void
|
protected function buildCgi(): void
|
||||||
@@ -206,7 +213,15 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
->exec('sed -i "s|//lib|/lib|g" Makefile')
|
->exec('sed -i "s|//lib|/lib|g" Makefile')
|
||||||
->exec("make {$concurrency} {$vars} cgi");
|
->exec("make {$concurrency} {$vars} cgi");
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CGI);
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/cgi')->exec('strip --strip-unneeded php-cgi');
|
||||||
|
}
|
||||||
|
if ($this->getOption('with-upx-pack')) {
|
||||||
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/cgi')
|
||||||
|
->exec(getenv('UPX_EXEC') . ' --best php-cgi');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->deployBinary(BUILD_TARGET_CGI);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -217,33 +232,29 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
if ($this->getPHPVersionID() < 80000) {
|
if ($this->getPHPVersionID() < 80000) {
|
||||||
throw new WrongUsageException('phpmicro only support PHP >= 8.0!');
|
throw new WrongUsageException('phpmicro only support PHP >= 8.0!');
|
||||||
}
|
}
|
||||||
try {
|
if ($this->getExt('phar')) {
|
||||||
if ($this->getExt('phar')) {
|
$this->phar_patched = true;
|
||||||
$this->phar_patched = true;
|
SourcePatcher::patchMicroPhar($this->getPHPVersionID());
|
||||||
SourcePatcher::patchMicroPhar($this->getPHPVersionID());
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$enable_fake_cli = $this->getOption('with-micro-fake-cli', false) ? ' -DPHP_MICRO_FAKE_CLI' : '';
|
$enable_fake_cli = $this->getOption('with-micro-fake-cli', false) ? ' -DPHP_MICRO_FAKE_CLI' : '';
|
||||||
$vars = $this->getMakeExtraVars();
|
$vars = $this->getMakeExtraVars();
|
||||||
|
|
||||||
// patch fake cli for micro
|
// patch fake cli for micro
|
||||||
$vars['EXTRA_CFLAGS'] .= $enable_fake_cli;
|
$vars['EXTRA_CFLAGS'] .= $enable_fake_cli;
|
||||||
$vars = SystemUtil::makeEnvVarString($vars);
|
$vars = SystemUtil::makeEnvVarString($vars);
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
|
|
||||||
shell()->cd(SOURCE_PATH . '/php-src')
|
shell()->cd(SOURCE_PATH . '/php-src')
|
||||||
->exec('sed -i "s|//lib|/lib|g" Makefile')
|
->exec('sed -i "s|//lib|/lib|g" Makefile')
|
||||||
->exec("make {$concurrency} {$vars} micro");
|
->exec("make {$concurrency} {$vars} micro");
|
||||||
|
|
||||||
// deploy micro.sfx
|
$this->processMicroUPX();
|
||||||
$dst = $this->deploySAPIBinary(BUILD_TARGET_MICRO);
|
|
||||||
|
|
||||||
// patch after UPX-ed micro.sfx
|
$this->deployBinary(BUILD_TARGET_MICRO);
|
||||||
$this->processUpxedMicroSfx($dst);
|
|
||||||
} finally {
|
if ($this->phar_patched) {
|
||||||
if ($this->phar_patched) {
|
SourcePatcher::unpatchMicroPhar();
|
||||||
SourcePatcher::unpatchMicroPhar();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -258,7 +269,14 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
->exec('sed -i "s|//lib|/lib|g" Makefile')
|
->exec('sed -i "s|//lib|/lib|g" Makefile')
|
||||||
->exec("make {$concurrency} {$vars} fpm");
|
->exec("make {$concurrency} {$vars} fpm");
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_FPM);
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/fpm')->exec('strip --strip-unneeded php-fpm');
|
||||||
|
}
|
||||||
|
if ($this->getOption('with-upx-pack')) {
|
||||||
|
shell()->cd(SOURCE_PATH . '/php-src/sapi/fpm')
|
||||||
|
->exec(getenv('UPX_EXEC') . ' --best php-fpm');
|
||||||
|
}
|
||||||
|
$this->deployBinary(BUILD_TARGET_FPM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -271,9 +289,6 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
return Config::getExt($ext->getName(), 'build-with-php') === true;
|
return Config::getExt($ext->getName(), 'build-with-php') === true;
|
||||||
});
|
});
|
||||||
$install_modules = $sharedExts ? 'install-modules' : '';
|
$install_modules = $sharedExts ? 'install-modules' : '';
|
||||||
|
|
||||||
// detect changes in module path
|
|
||||||
$diff = new DirDiff(BUILD_MODULES_PATH, true);
|
|
||||||
$vars = SystemUtil::makeEnvVarString($this->getMakeExtraVars());
|
$vars = SystemUtil::makeEnvVarString($this->getMakeExtraVars());
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
shell()->cd(SOURCE_PATH . '/php-src')
|
shell()->cd(SOURCE_PATH . '/php-src')
|
||||||
@@ -281,25 +296,72 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
->exec('sed -i "s|^EXTENSION_DIR = .*|EXTENSION_DIR = /' . basename(BUILD_MODULES_PATH) . '|" Makefile')
|
->exec('sed -i "s|^EXTENSION_DIR = .*|EXTENSION_DIR = /' . basename(BUILD_MODULES_PATH) . '|" Makefile')
|
||||||
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi {$install_modules} install-build install-headers install-programs");
|
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi {$install_modules} install-build install-headers install-programs");
|
||||||
|
|
||||||
// process libphp.so for shared embed
|
$ldflags = getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS') ?: '';
|
||||||
$libphpSo = BUILD_LIB_PATH . '/libphp.so';
|
$libDir = BUILD_LIB_PATH;
|
||||||
$libphpSoDest = BUILD_LIB_PATH . '/libphp.so';
|
$modulesDir = BUILD_MODULES_PATH;
|
||||||
if (file_exists($libphpSo)) {
|
$libphpSo = "{$libDir}/libphp.so";
|
||||||
// deploy libphp.so
|
$realLibName = 'libphp.so';
|
||||||
preg_match('/-release\s+(\S*)/', getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS'), $matches);
|
$cwd = getcwd();
|
||||||
if (!empty($matches[1])) {
|
|
||||||
$libphpSoDest = str_replace('.so', '-' . $matches[1] . '.so', $libphpSo);
|
if (preg_match('/-release\s+(\S+)/', $ldflags, $matches)) {
|
||||||
|
$release = $matches[1];
|
||||||
|
$realLibName = "libphp-{$release}.so";
|
||||||
|
$libphpRelease = "{$libDir}/{$realLibName}";
|
||||||
|
if (!file_exists($libphpRelease) && file_exists($libphpSo)) {
|
||||||
|
rename($libphpSo, $libphpRelease);
|
||||||
}
|
}
|
||||||
$this->deployBinary($libphpSo, $libphpSoDest, false);
|
if (file_exists($libphpRelease)) {
|
||||||
|
chdir($libDir);
|
||||||
|
if (file_exists($libphpSo)) {
|
||||||
|
unlink($libphpSo);
|
||||||
|
}
|
||||||
|
symlink($realLibName, 'libphp.so');
|
||||||
|
shell()->exec(sprintf(
|
||||||
|
'patchelf --set-soname %s %s',
|
||||||
|
escapeshellarg($realLibName),
|
||||||
|
escapeshellarg($libphpRelease)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
if (is_dir($modulesDir)) {
|
||||||
|
chdir($modulesDir);
|
||||||
|
foreach ($this->getExts() as $ext) {
|
||||||
|
if (!$ext->isBuildShared()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$name = $ext->getName();
|
||||||
|
$versioned = "{$name}-{$release}.so";
|
||||||
|
$unversioned = "{$name}.so";
|
||||||
|
$src = "{$modulesDir}/{$versioned}";
|
||||||
|
$dst = "{$modulesDir}/{$unversioned}";
|
||||||
|
if (is_file($src)) {
|
||||||
|
rename($src, $dst);
|
||||||
|
shell()->exec(sprintf(
|
||||||
|
'patchelf --set-soname %s %s',
|
||||||
|
escapeshellarg($unversioned),
|
||||||
|
escapeshellarg($dst)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chdir($cwd);
|
||||||
}
|
}
|
||||||
|
|
||||||
// process shared extensions build-with-php
|
$target = "{$libDir}/{$realLibName}";
|
||||||
$increment_files = $diff->getChangedFiles();
|
if (file_exists($target)) {
|
||||||
foreach ($increment_files as $increment_file) {
|
[, $output] = shell()->execWithResult('readelf -d ' . escapeshellarg($target));
|
||||||
$this->deployBinary($increment_file, $increment_file, false);
|
$output = implode("\n", $output);
|
||||||
|
if (preg_match('/SONAME.*\[(.+)]/', $output, $sonameMatch)) {
|
||||||
|
$currentSoname = $sonameMatch[1];
|
||||||
|
if ($currentSoname !== basename($target)) {
|
||||||
|
shell()->exec(sprintf(
|
||||||
|
'patchelf --set-soname %s %s',
|
||||||
|
escapeshellarg(basename($target)),
|
||||||
|
escapeshellarg($target)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// process libphp.a for static embed
|
|
||||||
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'static') {
|
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'static') {
|
||||||
$AR = getenv('AR') ?: 'ar';
|
$AR = getenv('AR') ?: 'ar';
|
||||||
f_passthru("{$AR} -t " . BUILD_LIB_PATH . "/libphp.a | grep '\\.a$' | xargs -n1 {$AR} d " . BUILD_LIB_PATH . '/libphp.a');
|
f_passthru("{$AR} -t " . BUILD_LIB_PATH . "/libphp.a | grep '\\.a$' | xargs -n1 {$AR} d " . BUILD_LIB_PATH . '/libphp.a');
|
||||||
@@ -307,7 +369,9 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
SystemUtil::exportDynamicSymbols(BUILD_LIB_PATH . '/libphp.a');
|
SystemUtil::exportDynamicSymbols(BUILD_LIB_PATH . '/libphp.a');
|
||||||
}
|
}
|
||||||
|
|
||||||
// patch embed php scripts
|
if (!$this->getOption('no-strip', false) && file_exists(BUILD_LIB_PATH . '/' . $realLibName)) {
|
||||||
|
shell()->cd(BUILD_LIB_PATH)->exec("strip --strip-unneeded {$realLibName}");
|
||||||
|
}
|
||||||
$this->patchPhpScripts();
|
$this->patchPhpScripts();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -328,26 +392,29 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Patch micro.sfx after UPX compression.
|
* Strip micro.sfx for Linux.
|
||||||
* micro needs special section handling in LinuxBuilder.
|
* The micro.sfx does not support UPX directly, but we can remove UPX-info segment to adapt.
|
||||||
* The micro.sfx does not support UPX directly, but we can remove UPX
|
* This will also make micro.sfx with upx-packed more like a malware fore antivirus :(
|
||||||
* info segment to adapt.
|
|
||||||
* This will also make micro.sfx with upx-packed more like a malware fore antivirus
|
|
||||||
*/
|
*/
|
||||||
private function processUpxedMicroSfx(string $dst): void
|
private function processMicroUPX(): void
|
||||||
{
|
{
|
||||||
if ($this->getOption('with-upx-pack') && version_compare($this->getMicroVersion(), '0.2.0') >= 0) {
|
if (version_compare($this->getMicroVersion(), '0.2.0') >= 0 && !$this->getOption('no-strip', false)) {
|
||||||
// strip first
|
shell()->exec('strip --strip-unneeded ' . SOURCE_PATH . '/php-src/sapi/micro/micro.sfx');
|
||||||
// cut binary with readelf
|
|
||||||
[$ret, $out] = shell()->execWithResult("readelf -l {$dst} | awk '/LOAD|GNU_STACK/ {getline; print \$1, \$2, \$3, \$4, \$6, \$7}'");
|
if ($this->getOption('with-upx-pack')) {
|
||||||
$out[1] = explode(' ', $out[1]);
|
// strip first
|
||||||
$offset = $out[1][0];
|
shell()->exec(getenv('UPX_EXEC') . ' --best ' . SOURCE_PATH . '/php-src/sapi/micro/micro.sfx');
|
||||||
if ($ret !== 0 || !str_starts_with($offset, '0x')) {
|
// cut binary with readelf
|
||||||
throw new PatchException('phpmicro UPX patcher', 'Cannot find offset in readelf output');
|
[$ret, $out] = shell()->execWithResult('readelf -l ' . SOURCE_PATH . '/php-src/sapi/micro/micro.sfx | awk \'/LOAD|GNU_STACK/ {getline; print $1, $2, $3, $4, $6, $7}\'');
|
||||||
|
$out[1] = explode(' ', $out[1]);
|
||||||
|
$offset = $out[1][0];
|
||||||
|
if ($ret !== 0 || !str_starts_with($offset, '0x')) {
|
||||||
|
throw new PatchException('phpmicro UPX patcher', 'Cannot find offset in readelf output');
|
||||||
|
}
|
||||||
|
$offset = hexdec($offset);
|
||||||
|
// remove upx extra wastes
|
||||||
|
file_put_contents(SOURCE_PATH . '/php-src/sapi/micro/micro.sfx', substr(file_get_contents(SOURCE_PATH . '/php-src/sapi/micro/micro.sfx'), 0, $offset));
|
||||||
}
|
}
|
||||||
$offset = hexdec($offset);
|
|
||||||
// remove upx extra wastes
|
|
||||||
file_put_contents($dst, substr(file_get_contents($dst), 0, $offset));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\linux\library;
|
|
||||||
|
|
||||||
class idn2 extends LinuxLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\idn2;
|
|
||||||
|
|
||||||
public const NAME = 'idn2';
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\linux\library;
|
|
||||||
|
|
||||||
class krb5 extends LinuxLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\krb5;
|
|
||||||
|
|
||||||
public const NAME = 'krb5';
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\linux\library;
|
|
||||||
|
|
||||||
class libmaxminddb extends LinuxLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\libmaxminddb;
|
|
||||||
|
|
||||||
public const NAME = 'libmaxminddb';
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\linux\library;
|
|
||||||
|
|
||||||
class libunistring extends LinuxLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\libunistring;
|
|
||||||
|
|
||||||
public const NAME = 'libunistring';
|
|
||||||
}
|
|
||||||
@@ -6,8 +6,6 @@ namespace SPC\builder\linux\library;
|
|||||||
|
|
||||||
use SPC\builder\linux\SystemUtil;
|
use SPC\builder\linux\SystemUtil;
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\toolchain\GccNativeToolchain;
|
|
||||||
use SPC\toolchain\ToolchainManager;
|
|
||||||
use SPC\util\executor\UnixAutoconfExecutor;
|
use SPC\util\executor\UnixAutoconfExecutor;
|
||||||
use SPC\util\SPCTarget;
|
use SPC\util\SPCTarget;
|
||||||
|
|
||||||
@@ -17,19 +15,26 @@ class liburing extends LinuxLibraryBase
|
|||||||
|
|
||||||
public function patchBeforeBuild(): bool
|
public function patchBeforeBuild(): bool
|
||||||
{
|
{
|
||||||
if (SystemUtil::isMuslDist()) {
|
if (!SystemUtil::isMuslDist()) {
|
||||||
FileSystem::replaceFileStr($this->source_dir . '/configure', 'realpath -s', 'realpath');
|
return false;
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
return false;
|
FileSystem::replaceFileStr($this->source_dir . '/configure', 'realpath -s', 'realpath');
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function build(): void
|
protected function build(): void
|
||||||
{
|
{
|
||||||
$use_libc = ToolchainManager::getToolchainClass() !== GccNativeToolchain::class || version_compare(SPCTarget::getLibcVersion(), '2.30', '>=');
|
$use_libc = SPCTarget::getLibc() !== 'glibc' || version_compare(SPCTarget::getLibcVersion(), '2.30', '>=');
|
||||||
$make = UnixAutoconfExecutor::create($this);
|
$make = UnixAutoconfExecutor::create($this);
|
||||||
|
|
||||||
if ($use_libc) {
|
if (!$use_libc) {
|
||||||
|
$make->appendEnv([
|
||||||
|
'CC' => 'gcc', // libc-less version fails to compile with clang or zig
|
||||||
|
'CXX' => 'g++',
|
||||||
|
'AR' => 'ar',
|
||||||
|
'LD' => 'ld',
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
$make->appendEnv([
|
$make->appendEnv([
|
||||||
'CFLAGS' => '-D_GNU_SOURCE',
|
'CFLAGS' => '-D_GNU_SOURCE',
|
||||||
]);
|
]);
|
||||||
@@ -46,7 +51,7 @@ class liburing extends LinuxLibraryBase
|
|||||||
$use_libc ? '--use-libc' : '',
|
$use_libc ? '--use-libc' : '',
|
||||||
)
|
)
|
||||||
->configure()
|
->configure()
|
||||||
->make('library ENABLE_SHARED=0', 'install ENABLE_SHARED=0', with_clean: false);
|
->make('library', 'install ENABLE_SHARED=0', with_clean: false);
|
||||||
|
|
||||||
$this->patchPkgconfPrefix();
|
$this->patchPkgconfPrefix();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace SPC\builder\linux\library;
|
namespace SPC\builder\linux\library;
|
||||||
|
|
||||||
use SPC\builder\linux\SystemUtil;
|
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
|
|
||||||
class openssl extends LinuxLibraryBase
|
class openssl extends LinuxLibraryBase
|
||||||
@@ -52,9 +51,6 @@ class openssl extends LinuxLibraryBase
|
|||||||
$zlib_extra = '';
|
$zlib_extra = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$openssl_dir = getenv('OPENSSLDIR') ?: null;
|
|
||||||
// TODO: in v3 use the following: $openssl_dir ??= SystemUtil::getOSRelease()['dist'] === 'redhat' ? '/etc/pki/tls' : '/etc/ssl';
|
|
||||||
$openssl_dir ??= '/etc/ssl';
|
|
||||||
$ex_lib = trim($ex_lib);
|
$ex_lib = trim($ex_lib);
|
||||||
|
|
||||||
shell()->cd($this->source_dir)->initializeEnv($this)
|
shell()->cd($this->source_dir)->initializeEnv($this)
|
||||||
@@ -62,11 +58,10 @@ class openssl extends LinuxLibraryBase
|
|||||||
"{$env} ./Configure no-shared {$extra} " .
|
"{$env} ./Configure no-shared {$extra} " .
|
||||||
'--prefix=' . BUILD_ROOT_PATH . ' ' .
|
'--prefix=' . BUILD_ROOT_PATH . ' ' .
|
||||||
'--libdir=' . BUILD_LIB_PATH . ' ' .
|
'--libdir=' . BUILD_LIB_PATH . ' ' .
|
||||||
"--openssldir={$openssl_dir} " .
|
'--openssldir=/etc/ssl ' .
|
||||||
"{$zlib_extra}" .
|
"{$zlib_extra}" .
|
||||||
'enable-pie ' .
|
'enable-pie ' .
|
||||||
'no-legacy ' .
|
'no-legacy ' .
|
||||||
'no-tests ' .
|
|
||||||
"linux-{$arch}"
|
"linux-{$arch}"
|
||||||
)
|
)
|
||||||
->exec('make clean')
|
->exec('make clean')
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ use SPC\builder\macos\library\MacOSLibraryBase;
|
|||||||
use SPC\builder\unix\UnixBuilderBase;
|
use SPC\builder\unix\UnixBuilderBase;
|
||||||
use SPC\exception\WrongUsageException;
|
use SPC\exception\WrongUsageException;
|
||||||
use SPC\store\Config;
|
use SPC\store\Config;
|
||||||
use SPC\store\DirDiff;
|
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\store\SourcePatcher;
|
use SPC\store\SourcePatcher;
|
||||||
use SPC\util\GlobalEnvManager;
|
use SPC\util\GlobalEnvManager;
|
||||||
@@ -106,7 +105,7 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
|
|
||||||
// prepare build php envs
|
// prepare build php envs
|
||||||
$envs_build_php = SystemUtil::makeEnvVarString([
|
$envs_build_php = SystemUtil::makeEnvVarString([
|
||||||
'CFLAGS' => getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS'),
|
'CFLAGS' => getenv('SPC_CMD_VAR_PHP_CONFIGURE_CFLAGS'),
|
||||||
'CPPFLAGS' => '-I' . BUILD_INCLUDE_PATH,
|
'CPPFLAGS' => '-I' . BUILD_INCLUDE_PATH,
|
||||||
'LDFLAGS' => '-L' . BUILD_LIB_PATH,
|
'LDFLAGS' => '-L' . BUILD_LIB_PATH,
|
||||||
]);
|
]);
|
||||||
@@ -190,7 +189,10 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
$shell->exec("make {$concurrency} {$vars} cli");
|
$shell->exec("make {$concurrency} {$vars} cli");
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CLI);
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
$shell->exec('dsymutil -f sapi/cli/php')->exec('strip -S sapi/cli/php');
|
||||||
|
}
|
||||||
|
$this->deployBinary(BUILD_TARGET_CLI);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function buildCgi(): void
|
protected function buildCgi(): void
|
||||||
@@ -200,7 +202,10 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
$shell->exec("make {$concurrency} {$vars} cgi");
|
$shell->exec("make {$concurrency} {$vars} cgi");
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CGI);
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
$shell->exec('dsymutil -f sapi/cgi/php-cgi')->exec('strip -S sapi/cgi/php-cgi');
|
||||||
|
}
|
||||||
|
$this->deployBinary(BUILD_TARGET_CGI);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -211,30 +216,31 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
if ($this->getPHPVersionID() < 80000) {
|
if ($this->getPHPVersionID() < 80000) {
|
||||||
throw new WrongUsageException('phpmicro only support PHP >= 8.0!');
|
throw new WrongUsageException('phpmicro only support PHP >= 8.0!');
|
||||||
}
|
}
|
||||||
|
if ($this->getExt('phar')) {
|
||||||
|
$this->phar_patched = true;
|
||||||
|
SourcePatcher::patchMicroPhar($this->getPHPVersionID());
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
$enable_fake_cli = $this->getOption('with-micro-fake-cli', false) ? ' -DPHP_MICRO_FAKE_CLI' : '';
|
||||||
if ($this->getExt('phar')) {
|
$vars = $this->getMakeExtraVars();
|
||||||
$this->phar_patched = true;
|
|
||||||
SourcePatcher::patchMicroPhar($this->getPHPVersionID());
|
|
||||||
}
|
|
||||||
|
|
||||||
$enable_fake_cli = $this->getOption('with-micro-fake-cli', false) ? ' -DPHP_MICRO_FAKE_CLI' : '';
|
// patch fake cli for micro
|
||||||
$vars = $this->getMakeExtraVars();
|
$vars['EXTRA_CFLAGS'] .= $enable_fake_cli;
|
||||||
|
$vars = SystemUtil::makeEnvVarString($vars);
|
||||||
|
|
||||||
// patch fake cli for micro
|
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
||||||
$vars['EXTRA_CFLAGS'] .= $enable_fake_cli;
|
// build
|
||||||
$vars = SystemUtil::makeEnvVarString($vars);
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
|
$shell->exec("make {$concurrency} {$vars} micro");
|
||||||
|
// strip
|
||||||
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
$shell->exec('dsymutil -f sapi/micro/micro.sfx')->exec('strip -S sapi/micro/micro.sfx');
|
||||||
|
}
|
||||||
|
|
||||||
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
$this->deployBinary(BUILD_TARGET_MICRO);
|
||||||
// build
|
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
|
||||||
$shell->exec("make {$concurrency} {$vars} micro");
|
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_MICRO);
|
if ($this->phar_patched) {
|
||||||
} finally {
|
SourcePatcher::unpatchMicroPhar();
|
||||||
if ($this->phar_patched) {
|
|
||||||
SourcePatcher::unpatchMicroPhar();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -248,7 +254,10 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
$shell = shell()->cd(SOURCE_PATH . '/php-src');
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
$shell->exec("make {$concurrency} {$vars} fpm");
|
$shell->exec("make {$concurrency} {$vars} fpm");
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_FPM);
|
if (!$this->getOption('no-strip', false)) {
|
||||||
|
$shell->exec('dsymutil -f sapi/fpm/php-fpm')->exec('strip -S sapi/fpm/php-fpm');
|
||||||
|
}
|
||||||
|
$this->deployBinary(BUILD_TARGET_FPM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -263,25 +272,9 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
$install_modules = $sharedExts ? 'install-modules' : '';
|
$install_modules = $sharedExts ? 'install-modules' : '';
|
||||||
$vars = SystemUtil::makeEnvVarString($this->getMakeExtraVars());
|
$vars = SystemUtil::makeEnvVarString($this->getMakeExtraVars());
|
||||||
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
$concurrency = getenv('SPC_CONCURRENCY') ? '-j' . getenv('SPC_CONCURRENCY') : '';
|
||||||
|
|
||||||
$diff = new DirDiff(BUILD_MODULES_PATH, true);
|
|
||||||
|
|
||||||
shell()->cd(SOURCE_PATH . '/php-src')
|
shell()->cd(SOURCE_PATH . '/php-src')
|
||||||
->exec('sed -i "" "s|^EXTENSION_DIR = .*|EXTENSION_DIR = /' . basename(BUILD_MODULES_PATH) . '|" Makefile')
|
|
||||||
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi {$install_modules} install-build install-headers install-programs");
|
->exec("make {$concurrency} INSTALL_ROOT=" . BUILD_ROOT_PATH . " {$vars} install-sapi {$install_modules} install-build install-headers install-programs");
|
||||||
|
|
||||||
$libphp = BUILD_LIB_PATH . '/libphp.dylib';
|
|
||||||
if (file_exists($libphp)) {
|
|
||||||
$this->deployBinary($libphp, $libphp, false);
|
|
||||||
// macOS currently have no -release option for dylib, so we just rename it here
|
|
||||||
}
|
|
||||||
|
|
||||||
// process shared extensions build-with-php
|
|
||||||
$increment_files = $diff->getChangedFiles();
|
|
||||||
foreach ($increment_files as $increment_file) {
|
|
||||||
$this->deployBinary($increment_file, $increment_file, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'static') {
|
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'static') {
|
||||||
$AR = getenv('AR') ?: 'ar';
|
$AR = getenv('AR') ?: 'ar';
|
||||||
f_passthru("{$AR} -t " . BUILD_LIB_PATH . "/libphp.a | grep '\\.a$' | xargs -n1 {$AR} d " . BUILD_LIB_PATH . '/libphp.a');
|
f_passthru("{$AR} -t " . BUILD_LIB_PATH . "/libphp.a | grep '\\.a$' | xargs -n1 {$AR} d " . BUILD_LIB_PATH . '/libphp.a');
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\macos\library;
|
|
||||||
|
|
||||||
class idn2 extends MacOSLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\idn2;
|
|
||||||
|
|
||||||
public const NAME = 'idn2';
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\macos\library;
|
|
||||||
|
|
||||||
class krb5 extends MacOSLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\krb5;
|
|
||||||
|
|
||||||
public const NAME = 'krb5';
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\macos\library;
|
|
||||||
|
|
||||||
class libmaxminddb extends MacOSLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\libmaxminddb;
|
|
||||||
|
|
||||||
public const NAME = 'libmaxminddb';
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\macos\library;
|
|
||||||
|
|
||||||
class libunistring extends MacOSLibraryBase
|
|
||||||
{
|
|
||||||
use \SPC\builder\unix\library\libunistring;
|
|
||||||
|
|
||||||
public const NAME = 'libunistring';
|
|
||||||
}
|
|
||||||
@@ -34,7 +34,7 @@ trait UnixLibraryTrait
|
|||||||
$files = array_map(fn ($x) => "{$x}.pc", $conf_pc);
|
$files = array_map(fn ($x) => "{$x}.pc", $conf_pc);
|
||||||
}
|
}
|
||||||
foreach ($files as $name) {
|
foreach ($files as $name) {
|
||||||
$realpath = realpath(BUILD_LIB_PATH . '/pkgconfig/' . $name);
|
$realpath = realpath(BUILD_ROOT_PATH . '/lib/pkgconfig/' . $name);
|
||||||
if ($realpath === false) {
|
if ($realpath === false) {
|
||||||
throw new PatchException('pkg-config prefix patcher', 'Cannot find library [' . static::NAME . '] pkgconfig file [' . $name . '] in ' . BUILD_LIB_PATH . '/pkgconfig/ !');
|
throw new PatchException('pkg-config prefix patcher', 'Cannot find library [' . static::NAME . '] pkgconfig file [' . $name . '] in ' . BUILD_LIB_PATH . '/pkgconfig/ !');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,8 +72,12 @@ trait UnixSystemUtilTrait
|
|||||||
if (!is_file($symbol_file)) {
|
if (!is_file($symbol_file)) {
|
||||||
throw new SPCInternalException("The symbol file {$symbol_file} does not exist, please check if nm command is available.");
|
throw new SPCInternalException("The symbol file {$symbol_file} does not exist, please check if nm command is available.");
|
||||||
}
|
}
|
||||||
// macOS/zig
|
// https://github.com/ziglang/zig/issues/24662
|
||||||
if (SPCTarget::getTargetOS() !== 'Linux' || ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
if (ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
||||||
|
return '-Wl,--export-dynamic';
|
||||||
|
}
|
||||||
|
// macOS
|
||||||
|
if (SPCTarget::getTargetOS() !== 'Linux') {
|
||||||
return "-Wl,-exported_symbols_list,{$symbol_file}";
|
return "-Wl,-exported_symbols_list,{$symbol_file}";
|
||||||
}
|
}
|
||||||
return "-Wl,--dynamic-list={$symbol_file}";
|
return "-Wl,--dynamic-list={$symbol_file}";
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ declare(strict_types=1);
|
|||||||
namespace SPC\builder\unix;
|
namespace SPC\builder\unix;
|
||||||
|
|
||||||
use SPC\builder\BuilderBase;
|
use SPC\builder\BuilderBase;
|
||||||
use SPC\builder\linux\SystemUtil;
|
|
||||||
use SPC\builder\linux\SystemUtil as LinuxSystemUtil;
|
use SPC\builder\linux\SystemUtil as LinuxSystemUtil;
|
||||||
use SPC\exception\SPCException;
|
use SPC\exception\SPCException;
|
||||||
use SPC\exception\SPCInternalException;
|
use SPC\exception\SPCInternalException;
|
||||||
@@ -14,7 +13,6 @@ use SPC\exception\WrongUsageException;
|
|||||||
use SPC\store\Config;
|
use SPC\store\Config;
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\store\pkg\GoXcaddy;
|
use SPC\store\pkg\GoXcaddy;
|
||||||
use SPC\store\SourceManager;
|
|
||||||
use SPC\toolchain\GccNativeToolchain;
|
use SPC\toolchain\GccNativeToolchain;
|
||||||
use SPC\toolchain\ToolchainManager;
|
use SPC\toolchain\ToolchainManager;
|
||||||
use SPC\util\DependencyUtil;
|
use SPC\util\DependencyUtil;
|
||||||
@@ -80,91 +78,6 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
$this->lib_list = $sorted_libraries;
|
$this->lib_list = $sorted_libraries;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Strip unneeded symbols from binary file.
|
|
||||||
*/
|
|
||||||
public function stripBinary(string $binary_path): void
|
|
||||||
{
|
|
||||||
shell()->exec(match (PHP_OS_FAMILY) {
|
|
||||||
'Darwin' => "strip -S {$binary_path}",
|
|
||||||
'Linux' => "strip --strip-unneeded {$binary_path}",
|
|
||||||
default => throw new SPCInternalException('stripBinary is only supported on Linux and macOS'),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extract debug information from binary file.
|
|
||||||
*
|
|
||||||
* @param string $binary_path the path to the binary file, including executables, shared libraries, etc
|
|
||||||
*/
|
|
||||||
public function extractDebugInfo(string $binary_path): string
|
|
||||||
{
|
|
||||||
$target_dir = BUILD_ROOT_PATH . '/debug';
|
|
||||||
FileSystem::createDir($target_dir);
|
|
||||||
$basename = basename($binary_path);
|
|
||||||
$debug_file = "{$target_dir}/{$basename}" . (PHP_OS_FAMILY === 'Darwin' ? '.dwarf' : '.debug');
|
|
||||||
if (PHP_OS_FAMILY === 'Darwin') {
|
|
||||||
shell()->exec("dsymutil -f {$binary_path} -o {$debug_file}");
|
|
||||||
} elseif (PHP_OS_FAMILY === 'Linux') {
|
|
||||||
if ($eu_strip = SystemUtil::findCommand('eu-strip')) {
|
|
||||||
shell()
|
|
||||||
->exec("{$eu_strip} -f {$debug_file} {$binary_path}")
|
|
||||||
->exec("objcopy --add-gnu-debuglink={$debug_file} {$binary_path}");
|
|
||||||
} else {
|
|
||||||
shell()
|
|
||||||
->exec("objcopy --only-keep-debug {$binary_path} {$debug_file}")
|
|
||||||
->exec("objcopy --add-gnu-debuglink={$debug_file} {$binary_path}");
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
throw new SPCInternalException('extractDebugInfo is only supported on Linux and macOS');
|
|
||||||
}
|
|
||||||
return $debug_file;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deploy the binary file from src to dst.
|
|
||||||
*/
|
|
||||||
public function deployBinary(string $src, string $dst, bool $executable = true): string
|
|
||||||
{
|
|
||||||
logger()->debug('Deploying binary from ' . $src . ' to ' . $dst);
|
|
||||||
|
|
||||||
// file must exists
|
|
||||||
if (!file_exists($src)) {
|
|
||||||
throw new SPCInternalException("Deploy failed. Cannot find file: {$src}");
|
|
||||||
}
|
|
||||||
// dst dir must exists
|
|
||||||
FileSystem::createDir(dirname($dst));
|
|
||||||
|
|
||||||
// ignore copy to self
|
|
||||||
if (realpath($src) !== realpath($dst)) {
|
|
||||||
shell()->exec('cp ' . escapeshellarg($src) . ' ' . escapeshellarg($dst));
|
|
||||||
}
|
|
||||||
|
|
||||||
// file exist
|
|
||||||
if (!file_exists($dst)) {
|
|
||||||
throw new SPCInternalException("Deploy failed. Cannot find file after copy: {$dst}");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$this->getOption('no-strip')) {
|
|
||||||
// extract debug info
|
|
||||||
$this->extractDebugInfo($dst);
|
|
||||||
// extra strip
|
|
||||||
$this->stripBinary($dst);
|
|
||||||
}
|
|
||||||
|
|
||||||
// UPX for linux
|
|
||||||
$upx_option = $this->getOption('with-upx-pack');
|
|
||||||
if ($upx_option && PHP_OS_FAMILY === 'Linux' && $executable) {
|
|
||||||
if ($this->getOption('no-strip')) {
|
|
||||||
logger()->warning('UPX compression is not recommended when --no-strip is enabled.');
|
|
||||||
}
|
|
||||||
logger()->info("Compressing {$dst} with UPX");
|
|
||||||
shell()->exec(getenv('UPX_EXEC') . " --best {$dst}");
|
|
||||||
}
|
|
||||||
|
|
||||||
return $dst;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sanity check after build complete.
|
* Sanity check after build complete.
|
||||||
*/
|
*/
|
||||||
@@ -235,10 +148,8 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
$lens .= ' -static';
|
$lens .= ' -static';
|
||||||
}
|
}
|
||||||
$dynamic_exports = '';
|
$dynamic_exports = '';
|
||||||
$embedType = 'static';
|
|
||||||
// if someone changed to EMBED_TYPE=shared, we need to add LD_LIBRARY_PATH
|
// if someone changed to EMBED_TYPE=shared, we need to add LD_LIBRARY_PATH
|
||||||
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'shared') {
|
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'shared') {
|
||||||
$embedType = 'shared';
|
|
||||||
if (PHP_OS_FAMILY === 'Darwin') {
|
if (PHP_OS_FAMILY === 'Darwin') {
|
||||||
$ext_path = 'DYLD_LIBRARY_PATH=' . BUILD_LIB_PATH . ':$DYLD_LIBRARY_PATH ';
|
$ext_path = 'DYLD_LIBRARY_PATH=' . BUILD_LIB_PATH . ':$DYLD_LIBRARY_PATH ';
|
||||||
} else {
|
} else {
|
||||||
@@ -257,19 +168,18 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$cc = getenv('CC');
|
$cc = getenv('CC');
|
||||||
|
|
||||||
[$ret, $out] = shell()->cd($sample_file_path)->execWithResult("{$cc} -o embed embed.c {$lens} {$dynamic_exports}");
|
[$ret, $out] = shell()->cd($sample_file_path)->execWithResult("{$cc} -o embed embed.c {$lens} {$dynamic_exports}");
|
||||||
if ($ret !== 0) {
|
if ($ret !== 0) {
|
||||||
throw new ValidationException(
|
throw new ValidationException(
|
||||||
'embed failed to build. Error message: ' . implode("\n", $out),
|
'embed failed sanity check: build failed. Error message: ' . implode("\n", $out),
|
||||||
validation_module: $embedType . ' libphp embed build sanity check'
|
validation_module: 'static libphp.a sanity check'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
[$ret, $output] = shell()->cd($sample_file_path)->execWithResult($ext_path . './embed');
|
[$ret, $output] = shell()->cd($sample_file_path)->execWithResult($ext_path . './embed');
|
||||||
if ($ret !== 0 || trim(implode('', $output)) !== 'hello') {
|
if ($ret !== 0 || trim(implode('', $output)) !== 'hello') {
|
||||||
throw new ValidationException(
|
throw new ValidationException(
|
||||||
'embed failed to run. Error message: ' . implode("\n", $output),
|
'embed failed sanity check: run failed. Error message: ' . implode("\n", $output),
|
||||||
validation_module: $embedType . ' libphp embed run sanity check'
|
validation_module: 'static libphp.a sanity check'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -298,20 +208,23 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deploy binaries that produces executable SAPI
|
* Deploy the binary file to the build bin path.
|
||||||
|
*
|
||||||
|
* @param int $type Type integer, one of BUILD_TARGET_CLI, BUILD_TARGET_MICRO, BUILD_TARGET_FPM
|
||||||
*/
|
*/
|
||||||
protected function deploySAPIBinary(int $type): string
|
protected function deployBinary(int $type): bool
|
||||||
{
|
{
|
||||||
$src = match ($type) {
|
$src = match ($type) {
|
||||||
BUILD_TARGET_CLI => SOURCE_PATH . '/php-src/sapi/cli/php',
|
BUILD_TARGET_CLI => SOURCE_PATH . '/php-src/sapi/cli/php',
|
||||||
BUILD_TARGET_MICRO => SOURCE_PATH . '/php-src/sapi/micro/micro.sfx',
|
BUILD_TARGET_MICRO => SOURCE_PATH . '/php-src/sapi/micro/micro.sfx',
|
||||||
BUILD_TARGET_FPM => SOURCE_PATH . '/php-src/sapi/fpm/php-fpm',
|
BUILD_TARGET_FPM => SOURCE_PATH . '/php-src/sapi/fpm/php-fpm',
|
||||||
BUILD_TARGET_CGI => SOURCE_PATH . '/php-src/sapi/cgi/php-cgi',
|
BUILD_TARGET_CGI => SOURCE_PATH . '/php-src/sapi/cgi/php-cgi',
|
||||||
BUILD_TARGET_FRANKENPHP => BUILD_BIN_PATH . '/frankenphp',
|
|
||||||
default => throw new SPCInternalException("Deployment does not accept type {$type}"),
|
default => throw new SPCInternalException("Deployment does not accept type {$type}"),
|
||||||
};
|
};
|
||||||
$dst = BUILD_BIN_PATH . '/' . basename($src);
|
logger()->info('Deploying ' . $this->getBuildTypeName($type) . ' file');
|
||||||
return $this->deployBinary($src, $dst);
|
FileSystem::createDir(BUILD_BIN_PATH);
|
||||||
|
shell()->exec('cp ' . escapeshellarg($src) . ' ' . escapeshellarg(BUILD_BIN_PATH));
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -352,75 +265,22 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Process the --with-frankenphp-app option
|
|
||||||
* Creates app.tar and app.checksum in source/frankenphp directory
|
|
||||||
*/
|
|
||||||
protected function processFrankenphpApp(): void
|
|
||||||
{
|
|
||||||
$frankenphpSourceDir = getenv('FRANKENPHP_SOURCE_PATH') ?: SOURCE_PATH . '/frankenphp';
|
|
||||||
if (!is_dir($frankenphpSourceDir)) {
|
|
||||||
SourceManager::initSource(['frankenphp'], ['frankenphp']);
|
|
||||||
}
|
|
||||||
$frankenphpAppPath = $this->getOption('with-frankenphp-app');
|
|
||||||
|
|
||||||
if ($frankenphpAppPath) {
|
|
||||||
if (!is_dir($frankenphpAppPath)) {
|
|
||||||
throw new WrongUsageException("The path provided to --with-frankenphp-app is not a valid directory: {$frankenphpAppPath}");
|
|
||||||
}
|
|
||||||
$appTarPath = $frankenphpSourceDir . '/app.tar';
|
|
||||||
logger()->info("Creating app.tar from {$frankenphpAppPath}");
|
|
||||||
|
|
||||||
shell()->exec('tar -cf ' . escapeshellarg($appTarPath) . ' -C ' . escapeshellarg($frankenphpAppPath) . ' .');
|
|
||||||
|
|
||||||
$checksum = hash_file('md5', $appTarPath);
|
|
||||||
file_put_contents($frankenphpSourceDir . '/app_checksum.txt', $checksum);
|
|
||||||
} else {
|
|
||||||
FileSystem::removeFileIfExists($frankenphpSourceDir . '/app.tar');
|
|
||||||
FileSystem::removeFileIfExists($frankenphpSourceDir . '/app_checksum.txt');
|
|
||||||
file_put_contents($frankenphpSourceDir . '/app.tar', '');
|
|
||||||
file_put_contents($frankenphpSourceDir . '/app_checksum.txt', '');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function getFrankenPHPVersion(): string
|
|
||||||
{
|
|
||||||
if ($version = getenv('FRANKENPHP_VERSION')) {
|
|
||||||
return $version;
|
|
||||||
}
|
|
||||||
$frankenphpSourceDir = getenv('FRANKENPHP_SOURCE_PATH') ?: SOURCE_PATH . '/frankenphp';
|
|
||||||
$goModPath = $frankenphpSourceDir . '/caddy/go.mod';
|
|
||||||
|
|
||||||
if (!file_exists($goModPath)) {
|
|
||||||
throw new SPCInternalException("FrankenPHP caddy/go.mod file not found at {$goModPath}, why did we not download FrankenPHP?");
|
|
||||||
}
|
|
||||||
|
|
||||||
$content = file_get_contents($goModPath);
|
|
||||||
if (preg_match('/github\.com\/dunglas\/frankenphp\s+v?(\d+\.\d+\.\d+)/', $content, $matches)) {
|
|
||||||
return $matches[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new SPCInternalException('Could not find FrankenPHP version in caddy/go.mod');
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function buildFrankenphp(): void
|
protected function buildFrankenphp(): void
|
||||||
{
|
{
|
||||||
GlobalEnvManager::addPathIfNotExists(GoXcaddy::getPath());
|
GlobalEnvManager::addPathIfNotExists(GoXcaddy::getPath());
|
||||||
$this->processFrankenphpApp();
|
|
||||||
$nobrotli = $this->getLib('brotli') === null ? ',nobrotli' : '';
|
$nobrotli = $this->getLib('brotli') === null ? ',nobrotli' : '';
|
||||||
$nowatcher = $this->getLib('watcher') === null ? ',nowatcher' : '';
|
$nowatcher = $this->getLib('watcher') === null ? ',nowatcher' : '';
|
||||||
$xcaddyModules = getenv('SPC_CMD_VAR_FRANKENPHP_XCADDY_MODULES');
|
$xcaddyModules = getenv('SPC_CMD_VAR_FRANKENPHP_XCADDY_MODULES');
|
||||||
$frankenphpSourceDir = getenv('FRANKENPHP_SOURCE_PATH') ?: SOURCE_PATH . '/frankenphp';
|
// make it possible to build from a different frankenphp directory!
|
||||||
|
if (!str_contains($xcaddyModules, '--with github.com/dunglas/frankenphp')) {
|
||||||
$xcaddyModules = preg_replace('#--with github.com/dunglas/frankenphp\S*#', '', $xcaddyModules);
|
$xcaddyModules = '--with github.com/dunglas/frankenphp ' . $xcaddyModules;
|
||||||
$xcaddyModules = "--with github.com/dunglas/frankenphp={$frankenphpSourceDir} " .
|
}
|
||||||
"--with github.com/dunglas/frankenphp/caddy={$frankenphpSourceDir}/caddy {$xcaddyModules}";
|
|
||||||
if ($this->getLib('brotli') === null && str_contains($xcaddyModules, '--with github.com/dunglas/caddy-cbrotli')) {
|
if ($this->getLib('brotli') === null && str_contains($xcaddyModules, '--with github.com/dunglas/caddy-cbrotli')) {
|
||||||
logger()->warning('caddy-cbrotli module is enabled, but brotli library is not built. Disabling caddy-cbrotli.');
|
logger()->warning('caddy-cbrotli module is enabled, but brotli library is not built. Disabling caddy-cbrotli.');
|
||||||
$xcaddyModules = str_replace('--with github.com/dunglas/caddy-cbrotli', '', $xcaddyModules);
|
$xcaddyModules = str_replace('--with github.com/dunglas/caddy-cbrotli', '', $xcaddyModules);
|
||||||
}
|
}
|
||||||
|
[, $out] = shell()->execWithResult('go list -m github.com/dunglas/frankenphp@latest');
|
||||||
$frankenPhpVersion = $this->getFrankenPHPVersion();
|
$frankenPhpVersion = str_replace('github.com/dunglas/frankenphp v', '', $out[0]);
|
||||||
$libphpVersion = $this->getPHPVersion();
|
$libphpVersion = $this->getPHPVersion();
|
||||||
$dynamic_exports = '';
|
$dynamic_exports = '';
|
||||||
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'shared') {
|
if (getenv('SPC_CMD_VAR_PHP_EMBED_TYPE') === 'shared') {
|
||||||
@@ -430,6 +290,7 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
$dynamic_exports = ' ' . $dynamicSymbolsArgument;
|
$dynamic_exports = ' ' . $dynamicSymbolsArgument;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$debugFlags = $this->getOption('no-strip') ? '-w -s ' : '';
|
||||||
$extLdFlags = "-extldflags '-pie{$dynamic_exports} {$this->arch_ld_flags}'";
|
$extLdFlags = "-extldflags '-pie{$dynamic_exports} {$this->arch_ld_flags}'";
|
||||||
$muslTags = '';
|
$muslTags = '';
|
||||||
$staticFlags = '';
|
$staticFlags = '';
|
||||||
@@ -440,7 +301,7 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
}
|
}
|
||||||
|
|
||||||
$config = (new SPCConfigUtil($this))->config($this->ext_list, $this->lib_list);
|
$config = (new SPCConfigUtil($this))->config($this->ext_list, $this->lib_list);
|
||||||
$cflags = "{$this->arch_c_flags} {$config['cflags']} " . getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS') . ' -DFRANKENPHP_VERSION=' . $frankenPhpVersion;
|
$cflags = "{$this->arch_c_flags} {$config['cflags']} " . getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS');
|
||||||
$libs = $config['libs'];
|
$libs = $config['libs'];
|
||||||
// Go's gcc driver doesn't automatically link against -lgcov or -lrt. Ugly, but necessary fix.
|
// Go's gcc driver doesn't automatically link against -lgcov or -lrt. Ugly, but necessary fix.
|
||||||
if ((str_contains((string) getenv('SPC_DEFAULT_C_FLAGS'), '-fprofile') ||
|
if ((str_contains((string) getenv('SPC_DEFAULT_C_FLAGS'), '-fprofile') ||
|
||||||
@@ -454,7 +315,7 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
'CGO_CFLAGS' => clean_spaces($cflags),
|
'CGO_CFLAGS' => clean_spaces($cflags),
|
||||||
'CGO_LDFLAGS' => "{$this->arch_ld_flags} {$staticFlags} {$config['ldflags']} {$libs}",
|
'CGO_LDFLAGS' => "{$this->arch_ld_flags} {$staticFlags} {$config['ldflags']} {$libs}",
|
||||||
'XCADDY_GO_BUILD_FLAGS' => '-buildmode=pie ' .
|
'XCADDY_GO_BUILD_FLAGS' => '-buildmode=pie ' .
|
||||||
'-ldflags \"-linkmode=external ' . $extLdFlags . ' ' .
|
'-ldflags \"-linkmode=external ' . $extLdFlags . ' ' . $debugFlags .
|
||||||
'-X \'github.com/caddyserver/caddy/v2.CustomVersion=FrankenPHP ' .
|
'-X \'github.com/caddyserver/caddy/v2.CustomVersion=FrankenPHP ' .
|
||||||
"v{$frankenPhpVersion} PHP {$libphpVersion} Caddy'\\\" " .
|
"v{$frankenPhpVersion} PHP {$libphpVersion} Caddy'\\\" " .
|
||||||
"-tags={$muslTags}nobadger,nomysql,nopgx{$nobrotli}{$nowatcher}",
|
"-tags={$muslTags}nobadger,nomysql,nopgx{$nobrotli}{$nowatcher}",
|
||||||
@@ -464,7 +325,13 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
->setEnv($env)
|
->setEnv($env)
|
||||||
->exec("xcaddy build --output frankenphp {$xcaddyModules}");
|
->exec("xcaddy build --output frankenphp {$xcaddyModules}");
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_FRANKENPHP);
|
if (!$this->getOption('no-strip', false) && file_exists(BUILD_BIN_PATH . '/frankenphp')) {
|
||||||
|
if (PHP_OS_FAMILY === 'Linux') {
|
||||||
|
shell()->cd(BUILD_BIN_PATH)->exec('strip --strip-unneeded frankenphp');
|
||||||
|
} else { // macOS doesn't understand strip-unneeded
|
||||||
|
shell()->cd(BUILD_BIN_PATH)->exec('strip -S frankenphp');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -23,8 +23,6 @@ trait curl
|
|||||||
->optionalLib('zstd', ...cmake_boolean_args('CURL_ZSTD'))
|
->optionalLib('zstd', ...cmake_boolean_args('CURL_ZSTD'))
|
||||||
->optionalLib('idn2', ...cmake_boolean_args('USE_LIBIDN2'))
|
->optionalLib('idn2', ...cmake_boolean_args('USE_LIBIDN2'))
|
||||||
->optionalLib('psl', ...cmake_boolean_args('CURL_USE_LIBPSL'))
|
->optionalLib('psl', ...cmake_boolean_args('CURL_USE_LIBPSL'))
|
||||||
->optionalLib('krb5', ...cmake_boolean_args('CURL_USE_GSSAPI'))
|
|
||||||
->optionalLib('idn2', ...cmake_boolean_args('CURL_USE_IDN2'))
|
|
||||||
->optionalLib('libcares', '-DENABLE_ARES=ON')
|
->optionalLib('libcares', '-DENABLE_ARES=ON')
|
||||||
->addConfigureArgs(
|
->addConfigureArgs(
|
||||||
'-DBUILD_CURL_EXE=OFF',
|
'-DBUILD_CURL_EXE=OFF',
|
||||||
|
|||||||
@@ -16,11 +16,7 @@ trait gettext
|
|||||||
->addConfigureArgs(
|
->addConfigureArgs(
|
||||||
'--disable-java',
|
'--disable-java',
|
||||||
'--disable-c++',
|
'--disable-c++',
|
||||||
'--disable-d',
|
'--with-included-gettext',
|
||||||
'--disable-rpath',
|
|
||||||
'--disable-modula2',
|
|
||||||
'--disable-libasprintf',
|
|
||||||
'--with-included-libintl',
|
|
||||||
"--with-iconv-prefix={$this->getBuildRootPath()}",
|
"--with-iconv-prefix={$this->getBuildRootPath()}",
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -10,14 +10,7 @@ trait gmp
|
|||||||
{
|
{
|
||||||
protected function build(): void
|
protected function build(): void
|
||||||
{
|
{
|
||||||
UnixAutoconfExecutor::create($this)
|
UnixAutoconfExecutor::create($this)->configure()->make();
|
||||||
->appendEnv([
|
|
||||||
'CFLAGS' => '-std=c17',
|
|
||||||
])
|
|
||||||
->configure(
|
|
||||||
'--enable-fat'
|
|
||||||
)
|
|
||||||
->make();
|
|
||||||
$this->patchPkgconfPrefix(['gmp.pc']);
|
$this->patchPkgconfPrefix(['gmp.pc']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\unix\library;
|
|
||||||
|
|
||||||
use SPC\util\executor\UnixAutoconfExecutor;
|
|
||||||
|
|
||||||
trait idn2
|
|
||||||
{
|
|
||||||
protected function build(): void
|
|
||||||
{
|
|
||||||
UnixAutoconfExecutor::create($this)
|
|
||||||
->configure(
|
|
||||||
'--disable-nls',
|
|
||||||
'--disable-doc',
|
|
||||||
'--enable-year2038',
|
|
||||||
'--disable-rpath'
|
|
||||||
)
|
|
||||||
->optionalLib('libiconv', "--with-libiconv-prefix={$this->getBuildRootPath()}")
|
|
||||||
->optionalLib('libunistring', "--with-libunistring-prefix={$this->getBuildRootPath()}")
|
|
||||||
->optionalLib('gettext', "--with-libnintl-prefix={$this->getBuildRootPath()}")
|
|
||||||
->make();
|
|
||||||
$this->patchPkgconfPrefix(['libidn2.pc']);
|
|
||||||
$this->patchLaDependencyPrefix();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\unix\library;
|
|
||||||
|
|
||||||
use SPC\util\executor\UnixAutoconfExecutor;
|
|
||||||
use SPC\util\SPCConfigUtil;
|
|
||||||
|
|
||||||
trait krb5
|
|
||||||
{
|
|
||||||
protected function build(): void
|
|
||||||
{
|
|
||||||
$origin_source_dir = $this->source_dir;
|
|
||||||
$this->source_dir .= '/src';
|
|
||||||
shell()->cd($this->source_dir)->exec('autoreconf -if');
|
|
||||||
$libs = array_map(fn ($x) => $x->getName(), $this->getDependencies(true));
|
|
||||||
$spc = new SPCConfigUtil($this->builder, ['no_php' => true, 'libs_only_deps' => true]);
|
|
||||||
$config = $spc->config(libraries: $libs, include_suggest_lib: $this->builder->getOption('with-suggested-libs', false));
|
|
||||||
$extraEnv = [
|
|
||||||
'CFLAGS' => '-fcommon',
|
|
||||||
'LIBS' => $config['libs'],
|
|
||||||
];
|
|
||||||
if (getenv('SPC_LD_LIBRARY_PATH') && getenv('SPC_LIBRARY_PATH')) {
|
|
||||||
$extraEnv = [...$extraEnv, ...[
|
|
||||||
'LD_LIBRARY_PATH' => getenv('SPC_LD_LIBRARY_PATH'),
|
|
||||||
'LIBRARY_PATH' => getenv('SPC_LIBRARY_PATH'),
|
|
||||||
]];
|
|
||||||
}
|
|
||||||
$args = [
|
|
||||||
'--disable-nls',
|
|
||||||
'--disable-rpath',
|
|
||||||
'--without-system-verto',
|
|
||||||
];
|
|
||||||
if (PHP_OS_FAMILY === 'Darwin') {
|
|
||||||
$extraEnv['LDFLAGS'] = '-framework Kerberos';
|
|
||||||
$args[] = 'ac_cv_func_secure_getenv=no';
|
|
||||||
}
|
|
||||||
UnixAutoconfExecutor::create($this)
|
|
||||||
->appendEnv($extraEnv)
|
|
||||||
->optionalLib('ldap', '--with-ldap', '--without-ldap')
|
|
||||||
->optionalLib('libedit', '--with-libedit', '--without-libedit')
|
|
||||||
->configure(...$args)
|
|
||||||
->make();
|
|
||||||
$this->patchPkgconfPrefix([
|
|
||||||
'krb5-gssapi.pc',
|
|
||||||
'krb5.pc',
|
|
||||||
'kadm-server.pc',
|
|
||||||
'kadm-client.pc',
|
|
||||||
'kdb.pc',
|
|
||||||
'mit-krb5-gssapi.pc',
|
|
||||||
'mit-krb5.pc',
|
|
||||||
'gssrpc.pc',
|
|
||||||
]);
|
|
||||||
$this->source_dir = $origin_source_dir;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -29,17 +29,13 @@ trait libjxl
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
if (ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
||||||
$cflags = getenv('SPC_DEFAULT_C_FLAGS') ?: getenv('CFLAGS') ?: '';
|
$cmake->addConfigureArgs(
|
||||||
$has_avx512 = str_contains($cflags, '-mavx512') || str_contains($cflags, '-march=x86-64-v4');
|
'-DCXX_MAVX512F_SUPPORTED:BOOL=FALSE',
|
||||||
if (!$has_avx512) {
|
'-DCXX_MAVX512DQ_SUPPORTED:BOOL=FALSE',
|
||||||
$cmake->addConfigureArgs(
|
'-DCXX_MAVX512CD_SUPPORTED:BOOL=FALSE',
|
||||||
'-DCXX_MAVX512F_SUPPORTED:BOOL=FALSE',
|
'-DCXX_MAVX512BW_SUPPORTED:BOOL=FALSE',
|
||||||
'-DCXX_MAVX512DQ_SUPPORTED:BOOL=FALSE',
|
'-DCXX_MAVX512VL_SUPPORTED:BOOL=FALSE'
|
||||||
'-DCXX_MAVX512CD_SUPPORTED:BOOL=FALSE',
|
);
|
||||||
'-DCXX_MAVX512BW_SUPPORTED:BOOL=FALSE',
|
|
||||||
'-DCXX_MAVX512VL_SUPPORTED:BOOL=FALSE'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$cmake->build();
|
$cmake->build();
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\unix\library;
|
|
||||||
|
|
||||||
use SPC\util\executor\UnixCMakeExecutor;
|
|
||||||
|
|
||||||
trait libmaxminddb
|
|
||||||
{
|
|
||||||
protected function build(): void
|
|
||||||
{
|
|
||||||
UnixCMakeExecutor::create($this)
|
|
||||||
->addConfigureArgs(
|
|
||||||
'-DBUILD_TESTING=OFF',
|
|
||||||
'-DMAXMINDDB_BUILD_BINARIES=OFF',
|
|
||||||
)
|
|
||||||
->build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -5,7 +5,7 @@ declare(strict_types=1);
|
|||||||
namespace SPC\builder\unix\library;
|
namespace SPC\builder\unix\library;
|
||||||
|
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\util\executor\UnixCMakeExecutor;
|
use SPC\util\executor\UnixAutoconfExecutor;
|
||||||
|
|
||||||
trait librdkafka
|
trait librdkafka
|
||||||
{
|
{
|
||||||
@@ -26,18 +26,34 @@ trait librdkafka
|
|||||||
|
|
||||||
protected function build(): void
|
protected function build(): void
|
||||||
{
|
{
|
||||||
UnixCMakeExecutor::create($this)
|
UnixAutoconfExecutor::create($this)
|
||||||
->optionalLib('zstd', ...cmake_boolean_args('WITH_ZSTD'))
|
->appendEnv(['CFLAGS' => '-Wno-int-conversion -Wno-unused-but-set-variable -Wno-unused-variable'])
|
||||||
->optionalLib('curl', ...cmake_boolean_args('WITH_CURL'))
|
->optionalLib(
|
||||||
->optionalLib('openssl', ...cmake_boolean_args('WITH_SSL'))
|
'zstd',
|
||||||
->optionalLib('zlib', ...cmake_boolean_args('WITH_ZLIB'))
|
function ($lib) {
|
||||||
->optionalLib('liblz4', ...cmake_boolean_args('ENABLE_LZ4_EXT'))
|
putenv("STATIC_LIB_libzstd={$lib->getLibDir()}/libzstd.a");
|
||||||
->addConfigureArgs(
|
return '';
|
||||||
'-DWITH_SASL=OFF',
|
},
|
||||||
'-DRDKAFKA_BUILD_STATIC=ON',
|
'--disable-zstd'
|
||||||
'-DRDKAFKA_BUILD_EXAMPLES=OFF',
|
|
||||||
'-DRDKAFKA_BUILD_TESTS=OFF',
|
|
||||||
)
|
)
|
||||||
->build();
|
->removeConfigureArgs(
|
||||||
|
'--with-pic',
|
||||||
|
'--enable-pic',
|
||||||
|
)
|
||||||
|
->configure(
|
||||||
|
'--disable-curl',
|
||||||
|
'--disable-sasl',
|
||||||
|
'--disable-valgrind',
|
||||||
|
'--disable-zlib',
|
||||||
|
'--disable-ssl',
|
||||||
|
)
|
||||||
|
->make();
|
||||||
|
|
||||||
|
$this->patchPkgconfPrefix(['rdkafka.pc', 'rdkafka-static.pc', 'rdkafka++.pc', 'rdkafka++-static.pc']);
|
||||||
|
// remove dynamic libs
|
||||||
|
shell()
|
||||||
|
->exec("rm -rf {$this->getLibDir()}/*.so.*")
|
||||||
|
->exec("rm -rf {$this->getLibDir()}/*.so")
|
||||||
|
->exec("rm -rf {$this->getLibDir()}/*.dylib");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\builder\unix\library;
|
|
||||||
|
|
||||||
use SPC\util\executor\UnixAutoconfExecutor;
|
|
||||||
|
|
||||||
trait libunistring
|
|
||||||
{
|
|
||||||
protected function build(): void
|
|
||||||
{
|
|
||||||
UnixAutoconfExecutor::create($this)
|
|
||||||
->configure('--disable-nls')
|
|
||||||
->make();
|
|
||||||
$this->patchLaDependencyPrefix();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -10,26 +10,8 @@ trait libwebp
|
|||||||
{
|
{
|
||||||
protected function build(): void
|
protected function build(): void
|
||||||
{
|
{
|
||||||
$code = '#include <immintrin.h>
|
|
||||||
int main() { return _mm256_cvtsi256_si32(_mm256_setzero_si256()); }';
|
|
||||||
$cc = getenv('CC') ?: 'gcc';
|
|
||||||
[$ret] = shell()->execWithResult("printf '%s' '{$code}' | {$cc} -x c -mavx2 -o /dev/null - 2>&1");
|
|
||||||
$disableAvx2 = $ret !== 0 && GNU_ARCH === 'x86_64' && PHP_OS_FAMILY === 'Linux';
|
|
||||||
|
|
||||||
UnixCMakeExecutor::create($this)
|
UnixCMakeExecutor::create($this)
|
||||||
->addConfigureArgs(
|
->addConfigureArgs('-DWEBP_BUILD_EXTRAS=ON')
|
||||||
'-DWEBP_BUILD_EXTRAS=OFF',
|
|
||||||
'-DWEBP_BUILD_ANIM_UTILS=OFF',
|
|
||||||
'-DWEBP_BUILD_CWEBP=OFF',
|
|
||||||
'-DWEBP_BUILD_DWEBP=OFF',
|
|
||||||
'-DWEBP_BUILD_GIF2WEBP=OFF',
|
|
||||||
'-DWEBP_BUILD_IMG2WEBP=OFF',
|
|
||||||
'-DWEBP_BUILD_VWEBP=OFF',
|
|
||||||
'-DWEBP_BUILD_WEBPINFO=OFF',
|
|
||||||
'-DWEBP_BUILD_WEBPMUX=OFF',
|
|
||||||
'-DWEBP_BUILD_FUZZTEST=OFF',
|
|
||||||
$disableAvx2 ? '-DWEBP_ENABLE_SIMD=OFF' : ''
|
|
||||||
)
|
|
||||||
->build();
|
->build();
|
||||||
// patch pkgconfig
|
// patch pkgconfig
|
||||||
$this->patchPkgconfPrefix(patch_option: PKGCONF_PATCH_PREFIX | PKGCONF_PATCH_LIBDIR);
|
$this->patchPkgconfPrefix(patch_option: PKGCONF_PATCH_PREFIX | PKGCONF_PATCH_LIBDIR);
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ trait ncurses
|
|||||||
|
|
||||||
UnixAutoconfExecutor::create($this)
|
UnixAutoconfExecutor::create($this)
|
||||||
->appendEnv([
|
->appendEnv([
|
||||||
'CFLAGS' => '-std=c17',
|
|
||||||
'LDFLAGS' => SPCTarget::isStatic() ? '-static' : '',
|
'LDFLAGS' => SPCTarget::isStatic() ? '-static' : '',
|
||||||
])
|
])
|
||||||
->configure(
|
->configure(
|
||||||
@@ -30,7 +29,7 @@ trait ncurses
|
|||||||
'--without-tests',
|
'--without-tests',
|
||||||
'--without-dlsym',
|
'--without-dlsym',
|
||||||
'--without-debug',
|
'--without-debug',
|
||||||
'--enable-symlinks',
|
'-enable-symlinks',
|
||||||
"--bindir={$this->getBinDir()}",
|
"--bindir={$this->getBinDir()}",
|
||||||
"--includedir={$this->getIncludeDir()}",
|
"--includedir={$this->getIncludeDir()}",
|
||||||
"--libdir={$this->getLibDir()}",
|
"--libdir={$this->getLibDir()}",
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ trait postgresql
|
|||||||
// fix aarch64 build on glibc 2.17 (e.g. CentOS 7)
|
// fix aarch64 build on glibc 2.17 (e.g. CentOS 7)
|
||||||
if (SPCTarget::getLibcVersion() === '2.17' && GNU_ARCH === 'aarch64') {
|
if (SPCTarget::getLibcVersion() === '2.17' && GNU_ARCH === 'aarch64') {
|
||||||
try {
|
try {
|
||||||
// FileSystem::replaceFileStr("{$this->source_dir}/src/port/pg_popcount_aarch64.c", 'HWCAP_SVE', '0');
|
FileSystem::replaceFileStr("{$this->source_dir}/src/port/pg_popcount_aarch64.c", 'HWCAP_SVE', '0');
|
||||||
FileSystem::replaceFileStr(
|
FileSystem::replaceFileStr(
|
||||||
"{$this->source_dir}/src/port/pg_crc32c_armv8_choose.c",
|
"{$this->source_dir}/src/port/pg_crc32c_armv8_choose.c",
|
||||||
'#if defined(__linux__) && !defined(__aarch64__) && !defined(HWCAP2_CRC32)',
|
'#if defined(__linux__) && !defined(__aarch64__) && !defined(HWCAP2_CRC32)',
|
||||||
@@ -47,10 +47,10 @@ trait postgresql
|
|||||||
{
|
{
|
||||||
$libs = array_map(fn ($x) => $x->getName(), $this->getDependencies(true));
|
$libs = array_map(fn ($x) => $x->getName(), $this->getDependencies(true));
|
||||||
$spc = new SPCConfigUtil($this->builder, ['no_php' => true, 'libs_only_deps' => true]);
|
$spc = new SPCConfigUtil($this->builder, ['no_php' => true, 'libs_only_deps' => true]);
|
||||||
$config = $spc->config(libraries: $libs, include_suggest_lib: $this->builder->getOption('with-suggested-libs', false));
|
$config = $spc->config(libraries: $libs, include_suggest_lib: $this->builder->getOption('with-suggested-libs'));
|
||||||
|
|
||||||
$env_vars = [
|
$env_vars = [
|
||||||
'CFLAGS' => $config['cflags'] . ' -std=c17',
|
'CFLAGS' => $config['cflags'],
|
||||||
'CPPFLAGS' => '-DPIC',
|
'CPPFLAGS' => '-DPIC',
|
||||||
'LDFLAGS' => $config['ldflags'],
|
'LDFLAGS' => $config['ldflags'],
|
||||||
'LIBS' => $config['libs'],
|
'LIBS' => $config['libs'],
|
||||||
|
|||||||
@@ -67,6 +67,21 @@ class WindowsBuilder extends BuilderBase
|
|||||||
|
|
||||||
$zts = $this->zts ? '--enable-zts=yes ' : '--enable-zts=no ';
|
$zts = $this->zts ? '--enable-zts=yes ' : '--enable-zts=no ';
|
||||||
|
|
||||||
|
// with-upx-pack for phpmicro
|
||||||
|
if ($enableMicro && version_compare($this->getMicroVersion(), '0.2.0') < 0) {
|
||||||
|
$makefile = FileSystem::convertPath(SOURCE_PATH . '/php-src/sapi/micro/Makefile.frag.w32');
|
||||||
|
if ($this->getOption('with-upx-pack', false)) {
|
||||||
|
if (!file_exists($makefile . '.originfile')) {
|
||||||
|
copy($makefile, $makefile . '.originfile');
|
||||||
|
FileSystem::replaceFileStr($makefile, '$(MICRO_SFX):', '_MICRO_UPX = ' . getenv('UPX_EXEC') . " --best $(MICRO_SFX)\n$(MICRO_SFX):");
|
||||||
|
FileSystem::replaceFileStr($makefile, '@$(_MICRO_MT)', "@$(_MICRO_MT)\n\t@$(_MICRO_UPX)");
|
||||||
|
}
|
||||||
|
} elseif (file_exists($makefile . '.originfile')) {
|
||||||
|
copy($makefile . '.originfile', $makefile);
|
||||||
|
unlink($makefile . '.originfile');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$opcache_jit = !$this->getOption('disable-opcache-jit', false);
|
$opcache_jit = !$this->getOption('disable-opcache-jit', false);
|
||||||
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit=yes ' : '--enable-opcache-jit=no ';
|
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit=yes ' : '--enable-opcache-jit=no ';
|
||||||
|
|
||||||
@@ -130,7 +145,7 @@ class WindowsBuilder extends BuilderBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPHP(int $build_target = BUILD_TARGET_NONE): void
|
public function testPHP(int $build_target = BUILD_TARGET_NONE)
|
||||||
{
|
{
|
||||||
$this->sanityCheck($build_target);
|
$this->sanityCheck($build_target);
|
||||||
}
|
}
|
||||||
@@ -141,27 +156,12 @@ class WindowsBuilder extends BuilderBase
|
|||||||
|
|
||||||
$extra_libs = getenv('SPC_EXTRA_LIBS') ?: '';
|
$extra_libs = getenv('SPC_EXTRA_LIBS') ?: '';
|
||||||
|
|
||||||
// Add debug symbols for release build if --no-strip is specified
|
|
||||||
// We need to modify CFLAGS to replace /Ox with /Zi and add /DEBUG to LDFLAGS
|
|
||||||
$debug_overrides = '';
|
|
||||||
if ($this->getOption('no-strip', false)) {
|
|
||||||
// Read current CFLAGS from Makefile and replace optimization flags
|
|
||||||
$makefile_content = file_get_contents(SOURCE_PATH . '\php-src\Makefile');
|
|
||||||
if (preg_match('/^CFLAGS=(.+?)$/m', $makefile_content, $matches)) {
|
|
||||||
$cflags = $matches[1];
|
|
||||||
// Replace /Ox (full optimization) with /Zi (debug info) and /Od (disable optimization)
|
|
||||||
// Keep optimization for speed: /O2 /Zi instead of /Od /Zi
|
|
||||||
$cflags = str_replace('/Ox ', '/O2 /Zi ', $cflags);
|
|
||||||
$debug_overrides = '"CFLAGS=' . $cflags . '" "LDFLAGS=/DEBUG /LTCG /INCREMENTAL:NO" "LDFLAGS_CLI=/DEBUG" ';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// add nmake wrapper
|
// add nmake wrapper
|
||||||
FileSystem::writeFile(SOURCE_PATH . '\php-src\nmake_cli_wrapper.bat', "nmake /nologo {$debug_overrides}LIBS_CLI=\"ws2_32.lib shell32.lib {$extra_libs}\" EXTRA_LD_FLAGS_PROGRAM= %*");
|
FileSystem::writeFile(SOURCE_PATH . '\php-src\nmake_cli_wrapper.bat', "nmake /nologo LIBS_CLI=\"ws2_32.lib shell32.lib {$extra_libs}\" EXTRA_LD_FLAGS_PROGRAM= %*");
|
||||||
|
|
||||||
cmd()->cd(SOURCE_PATH . '\php-src')->exec("{$this->sdk_prefix} nmake_cli_wrapper.bat --task-args php.exe");
|
cmd()->cd(SOURCE_PATH . '\php-src')->exec("{$this->sdk_prefix} nmake_cli_wrapper.bat --task-args php.exe");
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CLI);
|
$this->deployBinary(BUILD_TARGET_CLI);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildCgi(): void
|
public function buildCgi(): void
|
||||||
@@ -170,23 +170,12 @@ class WindowsBuilder extends BuilderBase
|
|||||||
|
|
||||||
$extra_libs = getenv('SPC_EXTRA_LIBS') ?: '';
|
$extra_libs = getenv('SPC_EXTRA_LIBS') ?: '';
|
||||||
|
|
||||||
// Add debug symbols for release build if --no-strip is specified
|
|
||||||
$debug_overrides = '';
|
|
||||||
if ($this->getOption('no-strip', false)) {
|
|
||||||
$makefile_content = file_get_contents(SOURCE_PATH . '\php-src\Makefile');
|
|
||||||
if (preg_match('/^CFLAGS=(.+?)$/m', $makefile_content, $matches)) {
|
|
||||||
$cflags = $matches[1];
|
|
||||||
$cflags = str_replace('/Ox ', '/O2 /Zi ', $cflags);
|
|
||||||
$debug_overrides = '"CFLAGS=' . $cflags . '" "LDFLAGS=/DEBUG /LTCG /INCREMENTAL:NO" "LDFLAGS_CGI=/DEBUG" ';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// add nmake wrapper
|
// add nmake wrapper
|
||||||
FileSystem::writeFile(SOURCE_PATH . '\php-src\nmake_cgi_wrapper.bat', "nmake /nologo {$debug_overrides}LIBS_CGI=\"ws2_32.lib kernel32.lib advapi32.lib {$extra_libs}\" EXTRA_LD_FLAGS_PROGRAM= %*");
|
FileSystem::writeFile(SOURCE_PATH . '\php-src\nmake_cgi_wrapper.bat', "nmake /nologo LIBS_CGI=\"ws2_32.lib kernel32.lib advapi32.lib {$extra_libs}\" EXTRA_LD_FLAGS_PROGRAM= %*");
|
||||||
|
|
||||||
cmd()->cd(SOURCE_PATH . '\php-src')->exec("{$this->sdk_prefix} nmake_cgi_wrapper.bat --task-args php-cgi.exe");
|
cmd()->cd(SOURCE_PATH . '\php-src')->exec("{$this->sdk_prefix} nmake_cgi_wrapper.bat --task-args php-cgi.exe");
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_CGI);
|
$this->deployBinary(BUILD_TARGET_CGI);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildEmbed(): void
|
public function buildEmbed(): void
|
||||||
@@ -213,20 +202,9 @@ class WindowsBuilder extends BuilderBase
|
|||||||
|
|
||||||
$extra_libs = getenv('SPC_EXTRA_LIBS') ?: '';
|
$extra_libs = getenv('SPC_EXTRA_LIBS') ?: '';
|
||||||
|
|
||||||
// Add debug symbols for release build if --no-strip is specified
|
|
||||||
$debug_overrides = '';
|
|
||||||
if ($this->getOption('no-strip', false) && !$this->getOption('debug', false)) {
|
|
||||||
$makefile_content = file_get_contents(SOURCE_PATH . '\php-src\Makefile');
|
|
||||||
if (preg_match('/^CFLAGS=(.+?)$/m', $makefile_content, $matches)) {
|
|
||||||
$cflags = $matches[1];
|
|
||||||
$cflags = str_replace('/Ox ', '/O2 /Zi ', $cflags);
|
|
||||||
$debug_overrides = '"CFLAGS=' . $cflags . '" "LDFLAGS=/DEBUG /LTCG /INCREMENTAL:NO" "LDFLAGS_MICRO=/DEBUG" ';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// add nmake wrapper
|
// add nmake wrapper
|
||||||
$fake_cli = $this->getOption('with-micro-fake-cli', false) ? ' /DPHP_MICRO_FAKE_CLI" ' : '';
|
$fake_cli = $this->getOption('with-micro-fake-cli', false) ? ' /DPHP_MICRO_FAKE_CLI" ' : '';
|
||||||
$wrapper = "nmake /nologo {$debug_overrides}LIBS_MICRO=\"ws2_32.lib shell32.lib {$extra_libs}\" CFLAGS_MICRO=\"/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1{$fake_cli}\" %*";
|
$wrapper = "nmake /nologo LIBS_MICRO=\"ws2_32.lib shell32.lib {$extra_libs}\" CFLAGS_MICRO=\"/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1{$fake_cli}\" %*";
|
||||||
FileSystem::writeFile(SOURCE_PATH . '\php-src\nmake_micro_wrapper.bat', $wrapper);
|
FileSystem::writeFile(SOURCE_PATH . '\php-src\nmake_micro_wrapper.bat', $wrapper);
|
||||||
|
|
||||||
// phar patch for micro
|
// phar patch for micro
|
||||||
@@ -243,7 +221,7 @@ class WindowsBuilder extends BuilderBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->deploySAPIBinary(BUILD_TARGET_MICRO);
|
$this->deployBinary(BUILD_TARGET_MICRO);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function proveLibs(array $sorted_libraries): void
|
public function proveLibs(array $sorted_libraries): void
|
||||||
@@ -357,53 +335,28 @@ class WindowsBuilder extends BuilderBase
|
|||||||
*
|
*
|
||||||
* @param int $type Deploy type
|
* @param int $type Deploy type
|
||||||
*/
|
*/
|
||||||
public function deploySAPIBinary(int $type): void
|
public function deployBinary(int $type): bool
|
||||||
{
|
{
|
||||||
logger()->info('Deploying ' . $this->getBuildTypeName($type) . ' file');
|
|
||||||
|
|
||||||
$debug_dir = BUILD_ROOT_PATH . '\debug';
|
|
||||||
$bin_path = BUILD_BIN_PATH;
|
|
||||||
|
|
||||||
// create dirs
|
|
||||||
FileSystem::createDir($debug_dir);
|
|
||||||
FileSystem::createDir($bin_path);
|
|
||||||
|
|
||||||
// determine source path for different SAPI
|
|
||||||
$rel_type = 'Release'; // TODO: Debug build support
|
|
||||||
$ts = $this->zts ? '_TS' : '';
|
$ts = $this->zts ? '_TS' : '';
|
||||||
$src = match ($type) {
|
$src = match ($type) {
|
||||||
BUILD_TARGET_CLI => [SOURCE_PATH . "\\php-src\\x64\\{$rel_type}{$ts}", 'php.exe', 'php.pdb'],
|
BUILD_TARGET_CLI => SOURCE_PATH . "\\php-src\\x64\\Release{$ts}\\php.exe",
|
||||||
BUILD_TARGET_MICRO => [SOURCE_PATH . "\\php-src\\x64\\{$rel_type}{$ts}", 'micro.sfx', 'micro.pdb'],
|
BUILD_TARGET_MICRO => SOURCE_PATH . "\\php-src\\x64\\Release{$ts}\\micro.sfx",
|
||||||
BUILD_TARGET_CGI => [SOURCE_PATH . "\\php-src\\x64\\{$rel_type}{$ts}", 'php-cgi.exe', 'php-cgi.pdb'],
|
BUILD_TARGET_CGI => SOURCE_PATH . "\\php-src\\x64\\Release{$ts}\\php-cgi.exe",
|
||||||
default => throw new SPCInternalException("Deployment does not accept type {$type}"),
|
default => throw new SPCInternalException("Deployment does not accept type {$type}"),
|
||||||
};
|
};
|
||||||
|
|
||||||
$src = "{$src[0]}\\{$src[1]}";
|
|
||||||
$dst = BUILD_BIN_PATH . '\\' . basename($src);
|
|
||||||
|
|
||||||
// file must exists
|
|
||||||
if (!file_exists($src)) {
|
|
||||||
throw new SPCInternalException("Deploy failed. Cannot find file: {$src}");
|
|
||||||
}
|
|
||||||
// dst dir must exists
|
|
||||||
FileSystem::createDir(dirname($dst));
|
|
||||||
|
|
||||||
// copy file
|
|
||||||
if (realpath($src) !== realpath($dst)) {
|
|
||||||
cmd()->exec('copy ' . escapeshellarg($src) . ' ' . escapeshellarg($dst));
|
|
||||||
}
|
|
||||||
|
|
||||||
// extract debug info in buildroot/debug
|
|
||||||
if ($this->getOption('no-strip', false) && file_exists("{$src[0]}\\{$src[2]}")) {
|
|
||||||
cmd()->exec('copy ' . escapeshellarg("{$src[0]}\\{$src[2]}") . ' ' . escapeshellarg($debug_dir));
|
|
||||||
}
|
|
||||||
|
|
||||||
// with-upx-pack for cli and micro
|
// with-upx-pack for cli and micro
|
||||||
if ($this->getOption('with-upx-pack', false)) {
|
if ($this->getOption('with-upx-pack', false)) {
|
||||||
if ($type === BUILD_TARGET_CLI || $type === BUILD_TARGET_CGI || ($type === BUILD_TARGET_MICRO && version_compare($this->getMicroVersion(), '0.2.0') >= 0)) {
|
if ($type === BUILD_TARGET_CLI || $type === BUILD_TARGET_CGI || ($type === BUILD_TARGET_MICRO && version_compare($this->getMicroVersion(), '0.2.0') >= 0)) {
|
||||||
cmd()->exec(getenv('UPX_EXEC') . ' --best ' . escapeshellarg($dst));
|
cmd()->exec(getenv('UPX_EXEC') . ' --best ' . escapeshellarg($src));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logger()->info('Deploying ' . $this->getBuildTypeName($type) . ' file');
|
||||||
|
FileSystem::createDir(BUILD_BIN_PATH);
|
||||||
|
|
||||||
|
cmd()->exec('copy ' . escapeshellarg($src) . ' ' . escapeshellarg(BUILD_BIN_PATH . '\\'));
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ class curl extends WindowsLibraryBase
|
|||||||
'-DCMAKE_BUILD_TYPE=Release ' .
|
'-DCMAKE_BUILD_TYPE=Release ' .
|
||||||
'-DBUILD_SHARED_LIBS=OFF ' .
|
'-DBUILD_SHARED_LIBS=OFF ' .
|
||||||
'-DBUILD_STATIC_LIBS=ON ' .
|
'-DBUILD_STATIC_LIBS=ON ' .
|
||||||
|
'-DCURL_STATICLIB=ON ' .
|
||||||
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' ' .
|
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' ' .
|
||||||
'-DBUILD_CURL_EXE=OFF ' . // disable curl.exe
|
'-DBUILD_CURL_EXE=OFF ' . // disable curl.exe
|
||||||
'-DBUILD_TESTING=OFF ' . // disable tests
|
'-DBUILD_TESTING=OFF ' . // disable tests
|
||||||
@@ -41,9 +42,9 @@ class curl extends WindowsLibraryBase
|
|||||||
'-DCURL_USE_OPENSSL=OFF ' . // disable openssl due to certificate issue
|
'-DCURL_USE_OPENSSL=OFF ' . // disable openssl due to certificate issue
|
||||||
'-DCURL_ENABLE_SSL=ON ' .
|
'-DCURL_ENABLE_SSL=ON ' .
|
||||||
'-DUSE_NGHTTP2=ON ' . // enable nghttp2
|
'-DUSE_NGHTTP2=ON ' . // enable nghttp2
|
||||||
'-DSHARE_LIB_OBJECT=OFF ' . // disable shared lib object
|
|
||||||
'-DCURL_USE_LIBSSH2=ON ' . // enable libssh2
|
'-DCURL_USE_LIBSSH2=ON ' . // enable libssh2
|
||||||
'-DENABLE_IPV6=ON ' . // enable ipv6
|
'-DENABLE_IPV6=ON ' . // enable ipv6
|
||||||
|
'-DNGHTTP2_CFLAGS="/DNGHTTP2_STATICLIB" ' .
|
||||||
$alt
|
$alt
|
||||||
)
|
)
|
||||||
->execWithWrapper(
|
->execWithWrapper(
|
||||||
@@ -52,7 +53,5 @@ class curl extends WindowsLibraryBase
|
|||||||
);
|
);
|
||||||
// move libcurl.lib to libcurl_a.lib
|
// move libcurl.lib to libcurl_a.lib
|
||||||
rename(BUILD_LIB_PATH . '\libcurl.lib', BUILD_LIB_PATH . '\libcurl_a.lib');
|
rename(BUILD_LIB_PATH . '\libcurl.lib', BUILD_LIB_PATH . '\libcurl_a.lib');
|
||||||
|
|
||||||
FileSystem::replaceFileStr(BUILD_INCLUDE_PATH . '\curl\curl.h', '#ifdef CURL_STATICLIB', '#if 1');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,16 +29,11 @@ class nghttp2 extends WindowsLibraryBase
|
|||||||
'-DBUILD_SHARED_LIBS=OFF ' .
|
'-DBUILD_SHARED_LIBS=OFF ' .
|
||||||
'-DENABLE_STATIC_CRT=ON ' .
|
'-DENABLE_STATIC_CRT=ON ' .
|
||||||
'-DENABLE_LIB_ONLY=ON ' .
|
'-DENABLE_LIB_ONLY=ON ' .
|
||||||
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' ' .
|
'-DCMAKE_INSTALL_PREFIX=' . BUILD_ROOT_PATH . ' '
|
||||||
'-DENABLE_STATIC_CRT=ON ' .
|
|
||||||
'-DENABLE_DOC=OFF ' .
|
|
||||||
'-DBUILD_TESTING=OFF '
|
|
||||||
)
|
)
|
||||||
->execWithWrapper(
|
->execWithWrapper(
|
||||||
$this->builder->makeSimpleWrapper('cmake'),
|
$this->builder->makeSimpleWrapper('cmake'),
|
||||||
"--build build --config Release --target install -j{$this->builder->concurrency}"
|
"--build build --config Release --target install -j{$this->builder->concurrency}"
|
||||||
);
|
);
|
||||||
|
|
||||||
FileSystem::replaceFileStr(BUILD_INCLUDE_PATH . '\nghttp2\nghttp2.h', '#ifdef NGHTTP2_STATICLIB', '#if 1');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,6 @@ class BuildPHPCommand extends BuildCommand
|
|||||||
$this->addOption('with-upx-pack', null, null, 'Compress / pack binary using UPX tool (linux/windows only)');
|
$this->addOption('with-upx-pack', null, null, 'Compress / pack binary using UPX tool (linux/windows only)');
|
||||||
$this->addOption('with-micro-logo', null, InputOption::VALUE_REQUIRED, 'Use custom .ico for micro.sfx (windows only)');
|
$this->addOption('with-micro-logo', null, InputOption::VALUE_REQUIRED, 'Use custom .ico for micro.sfx (windows only)');
|
||||||
$this->addOption('enable-micro-win32', null, null, 'Enable win32 mode for phpmicro (Windows only)');
|
$this->addOption('enable-micro-win32', null, null, 'Enable win32 mode for phpmicro (Windows only)');
|
||||||
$this->addOption('with-frankenphp-app', null, InputOption::VALUE_REQUIRED, 'Path to a folder to be embedded in FrankenPHP');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function handle(): int
|
public function handle(): int
|
||||||
|
|||||||
@@ -20,9 +20,9 @@ class SwitchPhpVersionCommand extends BaseCommand
|
|||||||
$this->addArgument(
|
$this->addArgument(
|
||||||
'php-major-version',
|
'php-major-version',
|
||||||
InputArgument::REQUIRED,
|
InputArgument::REQUIRED,
|
||||||
'PHP major version (supported: 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5)',
|
'PHP major version (supported: 7.4, 8.0, 8.1, 8.2, 8.3, 8.4)',
|
||||||
null,
|
null,
|
||||||
fn () => ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
|
fn () => ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
||||||
);
|
);
|
||||||
$this->no_motd = true;
|
$this->no_motd = true;
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@ class SwitchPhpVersionCommand extends BaseCommand
|
|||||||
public function handle(): int
|
public function handle(): int
|
||||||
{
|
{
|
||||||
$php_ver = $this->input->getArgument('php-major-version');
|
$php_ver = $this->input->getArgument('php-major-version');
|
||||||
if (!in_array($php_ver, ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'])) {
|
if (!in_array($php_ver, ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'])) {
|
||||||
// match x.y.z
|
// match x.y.z
|
||||||
preg_match('/^\d+\.\d+\.\d+$/', $php_ver, $matches);
|
preg_match('/^\d+\.\d+\.\d+$/', $php_ver, $matches);
|
||||||
if (!$matches) {
|
if (!$matches) {
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ class LinuxMuslCheck
|
|||||||
public static function optionalCheck(): bool
|
public static function optionalCheck(): bool
|
||||||
{
|
{
|
||||||
return getenv('SPC_TOOLCHAIN') === MuslToolchain::class ||
|
return getenv('SPC_TOOLCHAIN') === MuslToolchain::class ||
|
||||||
(getenv('SPC_TOOLCHAIN') === ZigToolchain::class && !SystemUtil::isMuslDist() && !str_contains((string) getenv('SPC_TARGET'), 'gnu'));
|
(getenv('SPC_TOOLCHAIN') === ZigToolchain::class && !SystemUtil::isMuslDist());
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @noinspection PhpUnused */
|
/** @noinspection PhpUnused */
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ class LinuxToolCheckList
|
|||||||
'bzip2', 'cmake', 'gcc',
|
'bzip2', 'cmake', 'gcc',
|
||||||
'g++', 'patch', 'binutils-gold',
|
'g++', 'patch', 'binutils-gold',
|
||||||
'libtoolize', 'which',
|
'libtoolize', 'which',
|
||||||
|
'patchelf',
|
||||||
];
|
];
|
||||||
|
|
||||||
public const TOOLS_DEBIAN = [
|
public const TOOLS_DEBIAN = [
|
||||||
@@ -30,6 +31,7 @@ class LinuxToolCheckList
|
|||||||
'tar', 'unzip', 'gzip', 'gcc', 'g++',
|
'tar', 'unzip', 'gzip', 'gcc', 'g++',
|
||||||
'bzip2', 'cmake', 'patch',
|
'bzip2', 'cmake', 'patch',
|
||||||
'xz', 'libtoolize', 'which',
|
'xz', 'libtoolize', 'which',
|
||||||
|
'patchelf',
|
||||||
];
|
];
|
||||||
|
|
||||||
public const TOOLS_RHEL = [
|
public const TOOLS_RHEL = [
|
||||||
@@ -37,7 +39,8 @@ class LinuxToolCheckList
|
|||||||
'git', 'autoconf', 'automake',
|
'git', 'autoconf', 'automake',
|
||||||
'tar', 'unzip', 'gzip', 'gcc', 'g++',
|
'tar', 'unzip', 'gzip', 'gcc', 'g++',
|
||||||
'bzip2', 'cmake', 'patch', 'which',
|
'bzip2', 'cmake', 'patch', 'which',
|
||||||
'xz', 'libtool', 'gettext-devel', 'file',
|
'xz', 'libtool', 'gettext-devel',
|
||||||
|
'patchelf', 'file',
|
||||||
];
|
];
|
||||||
|
|
||||||
public const TOOLS_ARCH = [
|
public const TOOLS_ARCH = [
|
||||||
|
|||||||
@@ -159,9 +159,7 @@ class ExceptionHandler
|
|||||||
public static function handleDefaultException(\Throwable $e): void
|
public static function handleDefaultException(\Throwable $e): void
|
||||||
{
|
{
|
||||||
$class = get_class($e);
|
$class = get_class($e);
|
||||||
$file = $e->getFile();
|
self::logError("✗ Unhandled exception {$class}:\n\t{$e->getMessage()}\n");
|
||||||
$line = $e->getLine();
|
|
||||||
self::logError("✗ Unhandled exception {$class} on {$file} line {$line}:\n\t{$e->getMessage()}\n");
|
|
||||||
self::logError('Stack trace:');
|
self::logError('Stack trace:');
|
||||||
self::logError(ConsoleColor::gray($e->getTraceAsString()) . PHP_EOL, 4);
|
self::logError(ConsoleColor::gray($e->getTraceAsString()) . PHP_EOL, 4);
|
||||||
self::logError('⚠ Please report this exception to: https://github.com/crazywhalecc/static-php-cli/issues');
|
self::logError('⚠ Please report this exception to: https://github.com/crazywhalecc/static-php-cli/issues');
|
||||||
|
|||||||
@@ -1,95 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace SPC\store;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A util class to diff directory file increments.
|
|
||||||
*/
|
|
||||||
class DirDiff
|
|
||||||
{
|
|
||||||
protected array $before = [];
|
|
||||||
|
|
||||||
protected array $before_file_hashes = [];
|
|
||||||
|
|
||||||
public function __construct(protected string $dir, protected bool $track_content_changes = false)
|
|
||||||
{
|
|
||||||
$this->reset();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reset the baseline to current state.
|
|
||||||
*/
|
|
||||||
public function reset(): void
|
|
||||||
{
|
|
||||||
$this->before = FileSystem::scanDirFiles($this->dir, relative: true) ?: [];
|
|
||||||
|
|
||||||
if ($this->track_content_changes) {
|
|
||||||
$this->before_file_hashes = [];
|
|
||||||
foreach ($this->before as $file) {
|
|
||||||
$this->before_file_hashes[$file] = md5_file($this->dir . DIRECTORY_SEPARATOR . $file);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the list of incremented files.
|
|
||||||
*
|
|
||||||
* @param bool $relative Return relative paths or absolute paths
|
|
||||||
* @return array<string> List of incremented files
|
|
||||||
*/
|
|
||||||
public function getIncrementFiles(bool $relative = false): array
|
|
||||||
{
|
|
||||||
$after = FileSystem::scanDirFiles($this->dir, relative: true) ?: [];
|
|
||||||
$diff = array_diff($after, $this->before);
|
|
||||||
if ($relative) {
|
|
||||||
return $diff;
|
|
||||||
}
|
|
||||||
return array_map(fn ($f) => $this->dir . DIRECTORY_SEPARATOR . $f, $diff);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the list of changed files (including new files).
|
|
||||||
*
|
|
||||||
* @param bool $relative Return relative paths or absolute paths
|
|
||||||
* @param bool $include_new_files Include new files as changed files
|
|
||||||
* @return array<string> List of changed files
|
|
||||||
*/
|
|
||||||
public function getChangedFiles(bool $relative = false, bool $include_new_files = true): array
|
|
||||||
{
|
|
||||||
$after = FileSystem::scanDirFiles($this->dir, relative: true) ?: [];
|
|
||||||
$changed = [];
|
|
||||||
foreach ($after as $file) {
|
|
||||||
if (isset($this->before_file_hashes[$file])) {
|
|
||||||
$after_hash = md5_file($this->dir . DIRECTORY_SEPARATOR . $file);
|
|
||||||
if ($after_hash !== $this->before_file_hashes[$file]) {
|
|
||||||
$changed[] = $file;
|
|
||||||
}
|
|
||||||
} elseif ($include_new_files) {
|
|
||||||
// New file, consider as changed
|
|
||||||
$changed[] = $file;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($relative) {
|
|
||||||
return $changed;
|
|
||||||
}
|
|
||||||
return array_map(fn ($f) => $this->dir . DIRECTORY_SEPARATOR . $f, $changed);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the list of removed files.
|
|
||||||
*
|
|
||||||
* @param bool $relative Return relative paths or absolute paths
|
|
||||||
* @return array<string> List of removed files
|
|
||||||
*/
|
|
||||||
public function getRemovedFiles(bool $relative = false): array
|
|
||||||
{
|
|
||||||
$after = FileSystem::scanDirFiles($this->dir, relative: true) ?: [];
|
|
||||||
$removed = array_diff($this->before, $after);
|
|
||||||
if ($relative) {
|
|
||||||
return $removed;
|
|
||||||
}
|
|
||||||
return array_map(fn ($f) => $this->dir . DIRECTORY_SEPARATOR . $f, $removed);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -97,9 +97,8 @@ class Downloader
|
|||||||
public static function getLatestGithubTarball(string $name, array $source, string $type = 'releases'): array
|
public static function getLatestGithubTarball(string $name, array $source, string $type = 'releases'): array
|
||||||
{
|
{
|
||||||
logger()->debug("finding {$name} source from github {$type} tarball");
|
logger()->debug("finding {$name} source from github {$type} tarball");
|
||||||
$source['query'] ??= '';
|
|
||||||
$data = json_decode(self::curlExec(
|
$data = json_decode(self::curlExec(
|
||||||
url: "https://api.github.com/repos/{$source['repo']}/{$type}{$source['query']}",
|
url: "https://api.github.com/repos/{$source['repo']}/{$type}",
|
||||||
hooks: [[CurlHook::class, 'setupGithubToken']],
|
hooks: [[CurlHook::class, 'setupGithubToken']],
|
||||||
retries: self::getRetryAttempts()
|
retries: self::getRetryAttempts()
|
||||||
), true, 512, JSON_THROW_ON_ERROR);
|
), true, 512, JSON_THROW_ON_ERROR);
|
||||||
@@ -109,9 +108,6 @@ class Downloader
|
|||||||
if (($rel['prerelease'] ?? false) === true && ($source['prefer-stable'] ?? false)) {
|
if (($rel['prerelease'] ?? false) === true && ($source['prefer-stable'] ?? false)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (($rel['draft'] ?? false) === true && (($source['prefer-stable'] ?? false) || !$rel['tarball_url'])) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!($source['match'] ?? null)) {
|
if (!($source['match'] ?? null)) {
|
||||||
$url = $rel['tarball_url'] ?? null;
|
$url = $rel['tarball_url'] ?? null;
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -174,9 +174,6 @@ class FileSystem
|
|||||||
logger()->debug("Copying file from {$from} to {$to}");
|
logger()->debug("Copying file from {$from} to {$to}");
|
||||||
$dst_path = FileSystem::convertPath($to);
|
$dst_path = FileSystem::convertPath($to);
|
||||||
$src_path = FileSystem::convertPath($from);
|
$src_path = FileSystem::convertPath($from);
|
||||||
if ($src_path === $dst_path) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!copy($src_path, $dst_path)) {
|
if (!copy($src_path, $dst_path)) {
|
||||||
throw new FileSystemException('Cannot copy file from ' . $src_path . ' to ' . $dst_path);
|
throw new FileSystemException('Cannot copy file from ' . $src_path . ' to ' . $dst_path);
|
||||||
}
|
}
|
||||||
@@ -408,15 +405,15 @@ class FileSystem
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$sub_file = self::convertPath($dir . '/' . $v);
|
$sub_file = self::convertPath($dir . '/' . $v);
|
||||||
if (is_link($sub_file) || is_file($sub_file)) {
|
if (is_dir($sub_file)) {
|
||||||
if (!unlink($sub_file)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
} elseif (is_dir($sub_file)) {
|
|
||||||
# 如果是 目录 且 递推 , 则递推添加下级文件
|
# 如果是 目录 且 递推 , 则递推添加下级文件
|
||||||
if (!self::removeDir($sub_file)) {
|
if (!self::removeDir($sub_file)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} elseif (is_link($sub_file) || is_file($sub_file)) {
|
||||||
|
if (!unlink($sub_file)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_link($dir)) {
|
if (is_link($dir)) {
|
||||||
@@ -572,44 +569,6 @@ class FileSystem
|
|||||||
return file_put_contents($file, implode('', $lines));
|
return file_put_contents($file, implode('', $lines));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Move file or directory, handling cross-device scenarios
|
|
||||||
* Uses rename() if possible, falls back to copy+delete for cross-device moves
|
|
||||||
*
|
|
||||||
* @param string $source Source path
|
|
||||||
* @param string $dest Destination path
|
|
||||||
*/
|
|
||||||
public static function moveFileOrDir(string $source, string $dest): void
|
|
||||||
{
|
|
||||||
$source = self::convertPath($source);
|
|
||||||
$dest = self::convertPath($dest);
|
|
||||||
|
|
||||||
// Check if source and dest are on the same device to avoid cross-device rename errors
|
|
||||||
$source_stat = @stat($source);
|
|
||||||
$dest_parent = dirname($dest);
|
|
||||||
$dest_stat = @stat($dest_parent);
|
|
||||||
|
|
||||||
// Only use rename if on same device
|
|
||||||
if ($source_stat !== false && $dest_stat !== false && $source_stat['dev'] === $dest_stat['dev']) {
|
|
||||||
if (@rename($source, $dest)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fall back to copy + delete for cross-device moves or if rename failed
|
|
||||||
if (is_dir($source)) {
|
|
||||||
self::copyDir($source, $dest);
|
|
||||||
self::removeDir($source);
|
|
||||||
} else {
|
|
||||||
if (!copy($source, $dest)) {
|
|
||||||
throw new FileSystemException("Failed to copy file from {$source} to {$dest}");
|
|
||||||
}
|
|
||||||
if (!unlink($source)) {
|
|
||||||
throw new FileSystemException("Failed to remove source file: {$source}");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static function extractArchive(string $filename, string $target): void
|
private static function extractArchive(string $filename, string $target): void
|
||||||
{
|
{
|
||||||
// Create base dir
|
// Create base dir
|
||||||
@@ -686,6 +645,36 @@ class FileSystem
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Move file or directory, handling cross-device scenarios
|
||||||
|
* Uses rename() if possible, falls back to copy+delete for cross-device moves
|
||||||
|
*
|
||||||
|
* @param string $source Source path
|
||||||
|
* @param string $dest Destination path
|
||||||
|
*/
|
||||||
|
private static function moveFileOrDir(string $source, string $dest): void
|
||||||
|
{
|
||||||
|
$source = self::convertPath($source);
|
||||||
|
$dest = self::convertPath($dest);
|
||||||
|
|
||||||
|
// Try rename first (fast, atomic)
|
||||||
|
if (@rename($source, $dest)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_dir($source)) {
|
||||||
|
self::copyDir($source, $dest);
|
||||||
|
self::removeDir($source);
|
||||||
|
} else {
|
||||||
|
if (!copy($source, $dest)) {
|
||||||
|
throw new FileSystemException("Failed to copy file from {$source} to {$dest}");
|
||||||
|
}
|
||||||
|
if (!unlink($source)) {
|
||||||
|
throw new FileSystemException("Failed to remove source file: {$source}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unzip file with stripping top-level directory
|
* Unzip file with stripping top-level directory
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ class SourcePatcher
|
|||||||
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchFfiCentos7FixO3strncmp']);
|
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchFfiCentos7FixO3strncmp']);
|
||||||
FileSystem::addSourceExtractHook('sqlsrv', [__CLASS__, 'patchSQLSRVWin32']);
|
FileSystem::addSourceExtractHook('sqlsrv', [__CLASS__, 'patchSQLSRVWin32']);
|
||||||
FileSystem::addSourceExtractHook('pdo_sqlsrv', [__CLASS__, 'patchSQLSRVWin32']);
|
FileSystem::addSourceExtractHook('pdo_sqlsrv', [__CLASS__, 'patchSQLSRVWin32']);
|
||||||
FileSystem::addSourceExtractHook('pdo_sqlsrv', [__CLASS__, 'patchSQLSRVPhp85']);
|
|
||||||
FileSystem::addSourceExtractHook('yaml', [__CLASS__, 'patchYamlWin32']);
|
FileSystem::addSourceExtractHook('yaml', [__CLASS__, 'patchYamlWin32']);
|
||||||
FileSystem::addSourceExtractHook('libyaml', [__CLASS__, 'patchLibYaml']);
|
FileSystem::addSourceExtractHook('libyaml', [__CLASS__, 'patchLibYaml']);
|
||||||
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchImapLicense']);
|
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchImapLicense']);
|
||||||
@@ -433,23 +432,6 @@ class SourcePatcher
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Fix the compilation issue of pdo_sqlsrv with php 8.5
|
|
||||||
*/
|
|
||||||
public static function patchSQLSRVPhp85(): bool
|
|
||||||
{
|
|
||||||
$source_dir = SOURCE_PATH . '/php-src/ext/pdo_sqlsrv';
|
|
||||||
if (!file_exists($source_dir . '/config.m4') && is_dir($source_dir . '/source/pdo_sqlsrv')) {
|
|
||||||
FileSystem::moveFileOrDir($source_dir . '/LICENSE', $source_dir . '/source/pdo_sqlsrv/LICENSE');
|
|
||||||
FileSystem::moveFileOrDir($source_dir . '/source/shared', $source_dir . '/source/pdo_sqlsrv/shared');
|
|
||||||
FileSystem::moveFileOrDir($source_dir . '/source/pdo_sqlsrv', SOURCE_PATH . '/pdo_sqlsrv');
|
|
||||||
FileSystem::removeDir($source_dir);
|
|
||||||
FileSystem::moveFileOrDir(SOURCE_PATH . '/pdo_sqlsrv', $source_dir);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function patchYamlWin32(): bool
|
public static function patchYamlWin32(): bool
|
||||||
{
|
{
|
||||||
FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/ext/yaml/config.w32', "lib.substr(lib.length - 6, 6) == '_a.lib'", "lib.substr(lib.length - 6, 6) == '_a.lib' || 'yes' == 'yes'");
|
FileSystem::replaceFileStr(SOURCE_PATH . '/php-src/ext/yaml/config.w32', "lib.substr(lib.length - 6, 6) == '_a.lib'", "lib.substr(lib.length - 6, 6) == '_a.lib' || 'yes' == 'yes'");
|
||||||
|
|||||||
@@ -48,10 +48,10 @@ class GoXcaddy extends CustomPackage
|
|||||||
'macos' => 'darwin',
|
'macos' => 'darwin',
|
||||||
default => throw new \InvalidArgumentException('Unsupported OS: ' . $name),
|
default => throw new \InvalidArgumentException('Unsupported OS: ' . $name),
|
||||||
};
|
};
|
||||||
[$go_version] = explode("\n", Downloader::curlExec('https://go.dev/VERSION?m=text'));
|
$go_version = '1.25.0';
|
||||||
$config = [
|
$config = [
|
||||||
'type' => 'url',
|
'type' => 'url',
|
||||||
'url' => "https://go.dev/dl/{$go_version}.{$os}-{$arch}.tar.gz",
|
'url' => "https://go.dev/dl/go{$go_version}.{$os}-{$arch}.tar.gz",
|
||||||
];
|
];
|
||||||
Downloader::downloadPackage($name, $config, $force);
|
Downloader::downloadPackage($name, $config, $force);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,11 +72,8 @@ class Zig extends CustomPackage
|
|||||||
|
|
||||||
$latest_version = null;
|
$latest_version = null;
|
||||||
foreach ($index_json as $version => $data) {
|
foreach ($index_json as $version => $data) {
|
||||||
// Skip the master branch, get the latest stable release
|
$latest_version = $version;
|
||||||
if ($version !== 'master') {
|
break;
|
||||||
$latest_version = $version;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$latest_version) {
|
if (!$latest_version) {
|
||||||
|
|||||||
@@ -15,7 +15,9 @@ class PhpSource extends CustomSourceBase
|
|||||||
public function fetch(bool $force = false, ?array $config = null, int $lock_as = SPC_DOWNLOAD_SOURCE): void
|
public function fetch(bool $force = false, ?array $config = null, int $lock_as = SPC_DOWNLOAD_SOURCE): void
|
||||||
{
|
{
|
||||||
$major = defined('SPC_BUILD_PHP_VERSION') ? SPC_BUILD_PHP_VERSION : '8.4';
|
$major = defined('SPC_BUILD_PHP_VERSION') ? SPC_BUILD_PHP_VERSION : '8.4';
|
||||||
if ($major === 'git') {
|
if ($major === '8.5') {
|
||||||
|
Downloader::downloadSource('php-src', ['type' => 'url', 'url' => 'https://downloads.php.net/~daniels/php-8.5.0RC3.tar.xz'], $force);
|
||||||
|
} elseif ($major === 'git') {
|
||||||
Downloader::downloadSource('php-src', ['type' => 'git', 'url' => 'https://github.com/php/php-src.git', 'rev' => 'master'], $force);
|
Downloader::downloadSource('php-src', ['type' => 'git', 'url' => 'https://github.com/php/php-src.git', 'rev' => 'master'], $force);
|
||||||
} else {
|
} else {
|
||||||
Downloader::downloadSource('php-src', $this->getLatestPHPInfo($major), $force);
|
Downloader::downloadSource('php-src', $this->getLatestPHPInfo($major), $force);
|
||||||
|
|||||||
@@ -67,8 +67,7 @@ class ZigToolchain implements ToolchainInterface
|
|||||||
$cflags = getenv('SPC_DEFAULT_C_FLAGS') ?: getenv('CFLAGS') ?: '';
|
$cflags = getenv('SPC_DEFAULT_C_FLAGS') ?: getenv('CFLAGS') ?: '';
|
||||||
$has_avx512 = str_contains($cflags, '-mavx512') || str_contains($cflags, '-march=x86-64-v4');
|
$has_avx512 = str_contains($cflags, '-mavx512') || str_contains($cflags, '-march=x86-64-v4');
|
||||||
if (!$has_avx512) {
|
if (!$has_avx512) {
|
||||||
$extra_vars = getenv('SPC_EXTRA_PHP_VARS') ?: '';
|
GlobalEnvManager::putenv('SPC_EXTRA_PHP_VARS=php_cv_have_avx512=no php_cv_have_avx512vbmi=no');
|
||||||
GlobalEnvManager::putenv("SPC_EXTRA_PHP_VARS=php_cv_have_avx512=no php_cv_have_avx512vbmi=no {$extra_vars}");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ namespace SPC\util;
|
|||||||
use SPC\builder\BuilderBase;
|
use SPC\builder\BuilderBase;
|
||||||
use SPC\builder\BuilderProvider;
|
use SPC\builder\BuilderProvider;
|
||||||
use SPC\builder\Extension;
|
use SPC\builder\Extension;
|
||||||
use SPC\builder\LibraryBase;
|
|
||||||
use SPC\exception\WrongUsageException;
|
use SPC\exception\WrongUsageException;
|
||||||
use SPC\store\Config;
|
use SPC\store\Config;
|
||||||
use Symfony\Component\Console\Input\ArgvInput;
|
use Symfony\Component\Console\Input\ArgvInput;
|
||||||
@@ -54,9 +53,6 @@ class SPCConfigUtil
|
|||||||
*/
|
*/
|
||||||
public function config(array $extensions = [], array $libraries = [], bool $include_suggest_ext = false, bool $include_suggest_lib = false): array
|
public function config(array $extensions = [], array $libraries = [], bool $include_suggest_ext = false, bool $include_suggest_lib = false): array
|
||||||
{
|
{
|
||||||
logger()->debug('config extensions: ' . implode(',', $extensions));
|
|
||||||
logger()->debug('config libs: ' . implode(',', $libraries));
|
|
||||||
logger()->debug('config suggest for [ext, lib]: ' . ($include_suggest_ext ? 'true' : 'false') . ',' . ($include_suggest_lib ? 'true' : 'false'));
|
|
||||||
$extra_exts = [];
|
$extra_exts = [];
|
||||||
foreach ($extensions as $ext) {
|
foreach ($extensions as $ext) {
|
||||||
$extra_exts = array_merge($extra_exts, Config::getExt($ext, 'ext-suggests', []));
|
$extra_exts = array_merge($extra_exts, Config::getExt($ext, 'ext-suggests', []));
|
||||||
@@ -80,6 +76,7 @@ class SPCConfigUtil
|
|||||||
$libs = $this->getLibsString($libraries, !$this->absolute_libs);
|
$libs = $this->getLibsString($libraries, !$this->absolute_libs);
|
||||||
|
|
||||||
// additional OS-specific libraries (e.g. macOS -lresolv)
|
// additional OS-specific libraries (e.g. macOS -lresolv)
|
||||||
|
// embed
|
||||||
if ($extra_libs = SPCTarget::getRuntimeLibs()) {
|
if ($extra_libs = SPCTarget::getRuntimeLibs()) {
|
||||||
$libs .= " {$extra_libs}";
|
$libs .= " {$extra_libs}";
|
||||||
}
|
}
|
||||||
@@ -127,63 +124,6 @@ class SPCConfigUtil
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* [Helper function]
|
|
||||||
* Get configuration for a specific extension(s) dependencies.
|
|
||||||
*
|
|
||||||
* @param Extension|Extension[] $extension Extension instance or list
|
|
||||||
* @param bool $include_suggest_ext Whether to include suggested extensions
|
|
||||||
* @param bool $include_suggest_lib Whether to include suggested libraries
|
|
||||||
* @return array{
|
|
||||||
* cflags: string,
|
|
||||||
* ldflags: string,
|
|
||||||
* libs: string
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
public function getExtensionConfig(array|Extension $extension, bool $include_suggest_ext = false, bool $include_suggest_lib = false): array
|
|
||||||
{
|
|
||||||
if (!is_array($extension)) {
|
|
||||||
$extension = [$extension];
|
|
||||||
}
|
|
||||||
$libs = array_map(fn ($y) => $y->getName(), array_merge(...array_map(fn ($x) => $x->getLibraryDependencies(true), $extension)));
|
|
||||||
return $this->config(
|
|
||||||
extensions: array_map(fn ($x) => $x->getName(), $extension),
|
|
||||||
libraries: $libs,
|
|
||||||
include_suggest_ext: $include_suggest_ext ?: $this->builder?->getOption('with-suggested-exts') ?? false,
|
|
||||||
include_suggest_lib: $include_suggest_lib ?: $this->builder?->getOption('with-suggested-libs') ?? false,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* [Helper function]
|
|
||||||
* Get configuration for a specific library(s) dependencies.
|
|
||||||
*
|
|
||||||
* @param LibraryBase|LibraryBase[] $lib Library instance or list
|
|
||||||
* @param bool $include_suggest_lib Whether to include suggested libraries
|
|
||||||
* @return array{
|
|
||||||
* cflags: string,
|
|
||||||
* ldflags: string,
|
|
||||||
* libs: string
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
public function getLibraryConfig(array|LibraryBase $lib, bool $include_suggest_lib = false): array
|
|
||||||
{
|
|
||||||
if (!is_array($lib)) {
|
|
||||||
$lib = [$lib];
|
|
||||||
}
|
|
||||||
$save_no_php = $this->no_php;
|
|
||||||
$this->no_php = true;
|
|
||||||
$save_libs_only_deps = $this->libs_only_deps;
|
|
||||||
$this->libs_only_deps = true;
|
|
||||||
$ret = $this->config(
|
|
||||||
libraries: array_map(fn ($x) => $x->getName(), $lib),
|
|
||||||
include_suggest_lib: $include_suggest_lib ?: $this->builder?->getOption('with-suggested-libs') ?? false,
|
|
||||||
);
|
|
||||||
$this->no_php = $save_no_php;
|
|
||||||
$this->libs_only_deps = $save_libs_only_deps;
|
|
||||||
return $ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function hasCpp(array $extensions, array $libraries): bool
|
private function hasCpp(array $extensions, array $libraries): bool
|
||||||
{
|
{
|
||||||
// judge cpp-extension
|
// judge cpp-extension
|
||||||
@@ -225,17 +165,9 @@ class SPCConfigUtil
|
|||||||
// parse pkg-configs
|
// parse pkg-configs
|
||||||
foreach ($libraries as $library) {
|
foreach ($libraries as $library) {
|
||||||
$pc = Config::getLib($library, 'pkg-configs', []);
|
$pc = Config::getLib($library, 'pkg-configs', []);
|
||||||
$pkg_config_path = getenv('PKG_CONFIG_PATH') ?: '';
|
|
||||||
$search_paths = array_filter(explode(is_unix() ? ':' : ';', $pkg_config_path));
|
|
||||||
foreach ($pc as $file) {
|
foreach ($pc as $file) {
|
||||||
$found = false;
|
if (!file_exists(BUILD_LIB_PATH . "/pkgconfig/{$file}.pc")) {
|
||||||
foreach ($search_paths as $path) {
|
throw new WrongUsageException("pkg-config file '{$file}.pc' for lib [{$library}] does not exist in '" . BUILD_LIB_PATH . "/pkgconfig'. Please build it first.");
|
||||||
if (file_exists($path . "/{$file}.pc")) {
|
|
||||||
$found = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!$found) {
|
|
||||||
throw new WrongUsageException("pkg-config file '{$file}.pc' for lib [{$library}] does not exist. Please build it first.");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$pc_cflags = implode(' ', $pc);
|
$pc_cflags = implode(' ', $pc);
|
||||||
@@ -264,17 +196,9 @@ class SPCConfigUtil
|
|||||||
foreach ($libraries as $library) {
|
foreach ($libraries as $library) {
|
||||||
// add pkg-configs libs
|
// add pkg-configs libs
|
||||||
$pkg_configs = Config::getLib($library, 'pkg-configs', []);
|
$pkg_configs = Config::getLib($library, 'pkg-configs', []);
|
||||||
$pkg_config_path = getenv('PKG_CONFIG_PATH') ?: '';
|
foreach ($pkg_configs as $pkg_config) {
|
||||||
$search_paths = array_filter(explode(is_unix() ? ':' : ';', $pkg_config_path));
|
if (!file_exists(BUILD_LIB_PATH . "/pkgconfig/{$pkg_config}.pc")) {
|
||||||
foreach ($pkg_configs as $file) {
|
throw new WrongUsageException("pkg-config file '{$pkg_config}.pc' for lib [{$library}] does not exist in '" . BUILD_LIB_PATH . "/pkgconfig'. Please build it first.");
|
||||||
$found = false;
|
|
||||||
foreach ($search_paths as $path) {
|
|
||||||
if (file_exists($path . "/{$file}.pc")) {
|
|
||||||
$found = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!$found) {
|
|
||||||
throw new WrongUsageException("pkg-config file '{$file}.pc' for lib [{$library}] does not exist. Please build it first.");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$pkg_configs = implode(' ', $pkg_configs);
|
$pkg_configs = implode(' ', $pkg_configs);
|
||||||
|
|||||||
@@ -27,10 +27,10 @@ class SPCTarget
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (ToolchainManager::getToolchainClass() === GccNativeToolchain::class) {
|
if (ToolchainManager::getToolchainClass() === GccNativeToolchain::class) {
|
||||||
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist() && !getenv('SPC_MUSL_DYNAMIC');
|
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist();
|
||||||
}
|
}
|
||||||
if (ToolchainManager::getToolchainClass() === ClangNativeToolchain::class) {
|
if (ToolchainManager::getToolchainClass() === ClangNativeToolchain::class) {
|
||||||
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist() && !getenv('SPC_MUSL_DYNAMIC');
|
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist();
|
||||||
}
|
}
|
||||||
// if SPC_LIBC is set, it means the target is static, remove it when 3.0 is released
|
// if SPC_LIBC is set, it means the target is static, remove it when 3.0 is released
|
||||||
if ($target = getenv('SPC_TARGET')) {
|
if ($target = getenv('SPC_TARGET')) {
|
||||||
|
|||||||
@@ -13,21 +13,21 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
// test php version (8.1 ~ 8.4 available, multiple for matrix)
|
// test php version (8.1 ~ 8.4 available, multiple for matrix)
|
||||||
$test_php_version = [
|
$test_php_version = [
|
||||||
// '8.1',
|
'8.1',
|
||||||
// '8.2',
|
'8.2',
|
||||||
// '8.3',
|
'8.3',
|
||||||
// '8.4',
|
'8.4',
|
||||||
'8.5',
|
'8.5',
|
||||||
// 'git',
|
// 'git',
|
||||||
];
|
];
|
||||||
|
|
||||||
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
|
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
|
||||||
$test_os = [
|
$test_os = [
|
||||||
// 'macos-15-intel', // bin/spc for x86_64
|
'macos-15-intel', // bin/spc for x86_64
|
||||||
// 'macos-15', // bin/spc for arm64
|
'macos-15', // bin/spc for arm64
|
||||||
// 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
|
'ubuntu-latest', // bin/spc-alpine-docker for x86_64
|
||||||
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
|
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
|
||||||
// 'ubuntu-24.04', // bin/spc for x86_64
|
'ubuntu-24.04', // bin/spc for x86_64
|
||||||
'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
|
'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
|
||||||
'ubuntu-24.04-arm', // bin/spc for arm64
|
'ubuntu-24.04-arm', // bin/spc for arm64
|
||||||
// 'windows-2022', // .\bin\spc.ps1
|
// 'windows-2022', // .\bin\spc.ps1
|
||||||
@@ -50,8 +50,8 @@ $prefer_pre_built = false;
|
|||||||
|
|
||||||
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
|
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
|
||||||
$extensions = match (PHP_OS_FAMILY) {
|
$extensions = match (PHP_OS_FAMILY) {
|
||||||
'Linux', 'Darwin' => 'pgsql',
|
'Linux', 'Darwin' => 'trader',
|
||||||
'Windows' => 'com_dotnet',
|
'Windows' => 'bcmath,bz2,calendar,ctype,curl,dba,dom,exif,ffi,fileinfo,filter,ftp,iconv,libxml,mbregex,mbstring,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_sqlite,pdo_sqlsrv,phar,session,shmop,simdjson,simplexml,soap,sockets,sqlite3,sqlsrv,ssh2,sysvshm,tokenizer,xml,xmlreader,xmlwriter,yaml,zip,zlib',
|
||||||
};
|
};
|
||||||
|
|
||||||
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
|
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
|
||||||
@@ -74,7 +74,7 @@ $with_libs = match (PHP_OS_FAMILY) {
|
|||||||
// You can use `common`, `bulk`, `minimal` or `none`.
|
// You can use `common`, `bulk`, `minimal` or `none`.
|
||||||
// note: combination is only available for *nix platform. Windows must use `none` combination
|
// note: combination is only available for *nix platform. Windows must use `none` combination
|
||||||
$base_combination = match (PHP_OS_FAMILY) {
|
$base_combination = match (PHP_OS_FAMILY) {
|
||||||
'Linux', 'Darwin' => 'minimal',
|
'Linux', 'Darwin' => 'none',
|
||||||
'Windows' => 'none',
|
'Windows' => 'none',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user