mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 04:44:53 +08:00
Compare commits
96 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4625c6a885 | ||
|
|
85b0cd8b4b | ||
|
|
1fcb74ad9b | ||
|
|
1049a3ce66 | ||
|
|
1b8b53d47f | ||
|
|
a232f578a4 | ||
|
|
70285cb53b | ||
|
|
a335d050cf | ||
|
|
ef4b2997a7 | ||
|
|
901da8fa41 | ||
|
|
e49a5d7a50 | ||
|
|
281b958075 | ||
|
|
e31f64864e | ||
|
|
92f5b56c74 | ||
|
|
2350d2d5ca | ||
|
|
086c855a43 | ||
|
|
4fa5292913 | ||
|
|
9634b8bcda | ||
|
|
5d5a50a33c | ||
|
|
1edf14e642 | ||
|
|
2277390a1a | ||
|
|
f93ad27c17 | ||
|
|
b690566b39 | ||
|
|
16e772e1a8 | ||
|
|
ad356b4a23 | ||
|
|
8c4e3d58a3 | ||
|
|
8a51d64685 | ||
|
|
055bc7bc3c | ||
|
|
7d7902e0e9 | ||
|
|
2a8fa7d155 | ||
|
|
67ef8f6608 | ||
|
|
d83a597689 | ||
|
|
5623fed37f | ||
|
|
38140d115f | ||
|
|
98117c3a04 | ||
|
|
b01d3ce12c | ||
|
|
608c915e14 | ||
|
|
c680299654 | ||
|
|
794ab16b32 | ||
|
|
661723c99a | ||
|
|
d9834d05c6 | ||
|
|
9a53ef3498 | ||
|
|
f680731f9d | ||
|
|
0fe1442f7e | ||
|
|
1e4780397b | ||
|
|
6b67cb90fc | ||
|
|
b89ff3c083 | ||
|
|
0cfa2036f0 | ||
|
|
c5882c1f8e | ||
|
|
4531c9fe57 | ||
|
|
223dd10ac6 | ||
|
|
1c28f0f455 | ||
|
|
b3c450291a | ||
|
|
372760e469 | ||
|
|
6cf4c40cd2 | ||
|
|
af75ffaf24 | ||
|
|
ae0217b3a1 | ||
|
|
1e2b4017ac | ||
|
|
19f941797e | ||
|
|
0b863cbc70 | ||
|
|
b09337de09 | ||
|
|
d902e70b4d | ||
|
|
34910d18e9 | ||
|
|
3a17cec521 | ||
|
|
94644d374f | ||
|
|
f8b0c2c980 | ||
|
|
6bbb3c969c | ||
|
|
76025b95c1 | ||
|
|
1be353fd13 | ||
|
|
54001ab868 | ||
|
|
890ff475f1 | ||
|
|
559a2909a9 | ||
|
|
fff2484529 | ||
|
|
d1b194999d | ||
|
|
64f7a3553e | ||
|
|
a06cc32491 | ||
|
|
022fdb2fc5 | ||
|
|
7688a55656 | ||
|
|
08388c0b15 | ||
|
|
e7a88f1df7 | ||
|
|
2f3122627e | ||
|
|
93a35908de | ||
|
|
5ef4623051 | ||
|
|
e952f1c76a | ||
|
|
09b89a30f9 | ||
|
|
9a681a9fa6 | ||
|
|
f7ca621efe | ||
|
|
6b5200002e | ||
|
|
53f7cdefe0 | ||
|
|
e1a14bbb9f | ||
|
|
9e051c8c80 | ||
|
|
e677be74d7 | ||
|
|
037d224fd7 | ||
|
|
ce44e00bd4 | ||
|
|
0247458853 | ||
|
|
656a58c3fa |
19
.github/workflows/build-unix.yml
vendored
19
.github/workflows/build-unix.yml
vendored
@ -46,6 +46,10 @@ on:
|
|||||||
description: Prefer pre-built binaries (reduce build time)
|
description: Prefer pre-built binaries (reduce build time)
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
|
with-suggested-libs:
|
||||||
|
description: Build with suggested libs
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
debug:
|
debug:
|
||||||
description: Show full build logs
|
description: Show full build logs
|
||||||
type: boolean
|
type: boolean
|
||||||
@ -86,6 +90,10 @@ on:
|
|||||||
description: Prefer pre-built binaries (reduce build time)
|
description: Prefer pre-built binaries (reduce build time)
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
|
with-suggested-libs:
|
||||||
|
description: Include suggested libs
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
debug:
|
debug:
|
||||||
description: Show full build logs
|
description: Show full build logs
|
||||||
type: boolean
|
type: boolean
|
||||||
@ -157,6 +165,9 @@ jobs:
|
|||||||
if [ ${{ inputs.prefer-pre-built }} == true ]; then
|
if [ ${{ inputs.prefer-pre-built }} == true ]; then
|
||||||
DOWN_CMD="$DOWN_CMD --prefer-pre-built"
|
DOWN_CMD="$DOWN_CMD --prefer-pre-built"
|
||||||
fi
|
fi
|
||||||
|
if [ ${{ inputs.with-suggested-libs }} == true ]; then
|
||||||
|
BUILD_CMD="$BUILD_CMD --with-suggested-libs"
|
||||||
|
fi
|
||||||
if [ ${{ inputs.build-cli }} == true ]; then
|
if [ ${{ inputs.build-cli }} == true ]; then
|
||||||
BUILD_CMD="$BUILD_CMD --build-cli"
|
BUILD_CMD="$BUILD_CMD --build-cli"
|
||||||
fi
|
fi
|
||||||
@ -202,6 +213,14 @@ jobs:
|
|||||||
# if: ${{ failure() }}
|
# if: ${{ failure() }}
|
||||||
# uses: mxschmitt/action-tmate@v3
|
# uses: mxschmitt/action-tmate@v3
|
||||||
|
|
||||||
|
# Upload debug logs
|
||||||
|
- if: ${{ inputs.debug && failure() }}
|
||||||
|
name: "Upload build logs on failure"
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: spc-logs-${{ inputs.php-version }}-${{ inputs.os }}
|
||||||
|
path: log/*.log
|
||||||
|
|
||||||
# Upload cli executable
|
# Upload cli executable
|
||||||
- if: ${{ inputs.build-cli == true }}
|
- if: ${{ inputs.build-cli == true }}
|
||||||
name: "Upload PHP cli SAPI"
|
name: "Upload PHP cli SAPI"
|
||||||
|
|||||||
@ -108,8 +108,7 @@ 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
|
||||||
|
|||||||
@ -92,11 +92,6 @@ 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
|
||||||
|
|||||||
428
composer.lock
generated
428
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -75,8 +75,10 @@ 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.
|
||||||
|
|
||||||
; LEGACY option to specify the target
|
; option to specify the target, superceded by SPC_TARGET if set
|
||||||
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:
|
||||||
@ -115,6 +117,10 @@ SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS="-g -fstack-protector-strong -fno-ident -fPIE
|
|||||||
; 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.
|
||||||
|
|||||||
@ -43,6 +43,14 @@
|
|||||||
"calendar": {
|
"calendar": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
|
"com_dotnet": {
|
||||||
|
"support": {
|
||||||
|
"BSD": "no",
|
||||||
|
"Linux": "no",
|
||||||
|
"Darwin": "no"
|
||||||
|
},
|
||||||
|
"type": "builtin"
|
||||||
|
},
|
||||||
"ctype": {
|
"ctype": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
@ -127,6 +135,14 @@
|
|||||||
"sockets"
|
"sockets"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"excimer": {
|
||||||
|
"support": {
|
||||||
|
"Windows": "wip",
|
||||||
|
"BSD": "wip"
|
||||||
|
},
|
||||||
|
"type": "external",
|
||||||
|
"source": "ext-excimer"
|
||||||
|
},
|
||||||
"exif": {
|
"exif": {
|
||||||
"type": "builtin"
|
"type": "builtin"
|
||||||
},
|
},
|
||||||
@ -232,11 +248,14 @@
|
|||||||
"BSD": "wip"
|
"BSD": "wip"
|
||||||
},
|
},
|
||||||
"type": "external",
|
"type": "external",
|
||||||
"source": "grpc",
|
"source": "ext-grpc",
|
||||||
"arg-type-unix": "enable-path",
|
"arg-type-unix": "enable-path",
|
||||||
"cpp-extension": true,
|
"cpp-extension": true,
|
||||||
"lib-depends": [
|
"lib-depends": [
|
||||||
"grpc"
|
"grpc",
|
||||||
|
"zlib",
|
||||||
|
"openssl",
|
||||||
|
"libcares"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"iconv": {
|
"iconv": {
|
||||||
@ -408,8 +427,7 @@
|
|||||||
"ext-depends": [
|
"ext-depends": [
|
||||||
"zlib",
|
"zlib",
|
||||||
"session"
|
"session"
|
||||||
],
|
]
|
||||||
"build-with-php": true
|
|
||||||
},
|
},
|
||||||
"memcached": {
|
"memcached": {
|
||||||
"support": {
|
"support": {
|
||||||
@ -487,6 +505,40 @@
|
|||||||
"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": {
|
||||||
|
|||||||
@ -361,6 +361,9 @@
|
|||||||
"source": "libargon2",
|
"source": "libargon2",
|
||||||
"static-libs-unix": [
|
"static-libs-unix": [
|
||||||
"libargon2.a"
|
"libargon2.a"
|
||||||
|
],
|
||||||
|
"lib-suggests": [
|
||||||
|
"libsodium"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"libavif": {
|
"libavif": {
|
||||||
@ -370,6 +373,15 @@
|
|||||||
],
|
],
|
||||||
"static-libs-windows": [
|
"static-libs-windows": [
|
||||||
"avif.lib"
|
"avif.lib"
|
||||||
|
],
|
||||||
|
"lib-depends": [
|
||||||
|
"libaom"
|
||||||
|
],
|
||||||
|
"lib-suggests": [
|
||||||
|
"libwebp",
|
||||||
|
"libjpeg",
|
||||||
|
"libxml2",
|
||||||
|
"libpng"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"libcares": {
|
"libcares": {
|
||||||
@ -850,6 +862,9 @@
|
|||||||
},
|
},
|
||||||
"openssl": {
|
"openssl": {
|
||||||
"source": "openssl",
|
"source": "openssl",
|
||||||
|
"pkg-configs": [
|
||||||
|
"openssl"
|
||||||
|
],
|
||||||
"static-libs-unix": [
|
"static-libs-unix": [
|
||||||
"libssl.a",
|
"libssl.a",
|
||||||
"libcrypto.a"
|
"libcrypto.a"
|
||||||
@ -962,6 +977,11 @@
|
|||||||
},
|
},
|
||||||
"unixodbc": {
|
"unixodbc": {
|
||||||
"source": "unixodbc",
|
"source": "unixodbc",
|
||||||
|
"pkg-configs": [
|
||||||
|
"odbc",
|
||||||
|
"odbccr",
|
||||||
|
"odbcinst"
|
||||||
|
],
|
||||||
"static-libs-unix": [
|
"static-libs-unix": [
|
||||||
"libodbc.a",
|
"libodbc.a",
|
||||||
"libodbccr.a",
|
"libodbccr.a",
|
||||||
@ -1003,6 +1023,9 @@
|
|||||||
},
|
},
|
||||||
"zlib": {
|
"zlib": {
|
||||||
"source": "zlib",
|
"source": "zlib",
|
||||||
|
"pkg-configs": [
|
||||||
|
"zlib"
|
||||||
|
],
|
||||||
"static-libs-unix": [
|
"static-libs-unix": [
|
||||||
"libz.a"
|
"libz.a"
|
||||||
],
|
],
|
||||||
@ -1016,6 +1039,9 @@
|
|||||||
},
|
},
|
||||||
"zstd": {
|
"zstd": {
|
||||||
"source": "zstd",
|
"source": "zstd",
|
||||||
|
"pkg-configs": [
|
||||||
|
"libzstd"
|
||||||
|
],
|
||||||
"static-libs-unix": [
|
"static-libs-unix": [
|
||||||
"libzstd.a"
|
"libzstd.a"
|
||||||
],
|
],
|
||||||
|
|||||||
@ -126,13 +126,23 @@
|
|||||||
},
|
},
|
||||||
"ext-event": {
|
"ext-event": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"url": "https://bitbucket.org/osmanov/pecl-event/get/3.0.8.tar.gz",
|
"url": "https://bitbucket.org/osmanov/pecl-event/get/3.1.4.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",
|
||||||
@ -151,6 +161,18 @@
|
|||||||
"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",
|
||||||
@ -339,7 +361,7 @@
|
|||||||
},
|
},
|
||||||
"gmp": {
|
"gmp": {
|
||||||
"type": "filelist",
|
"type": "filelist",
|
||||||
"url": "https://gmplib.org/download/gmp/",
|
"url": "https://ftp.gnu.org/gnu/gmp/",
|
||||||
"regex": "/href=\"(?<file>gmp-(?<version>[^\"]+)\\.tar\\.xz)\"/",
|
"regex": "/href=\"(?<file>gmp-(?<version>[^\"]+)\\.tar\\.xz)\"/",
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": true,
|
||||||
"alt": {
|
"alt": {
|
||||||
@ -504,7 +526,7 @@
|
|||||||
"libavif": {
|
"libavif": {
|
||||||
"type": "ghtar",
|
"type": "ghtar",
|
||||||
"repo": "AOMediaCodec/libavif",
|
"repo": "AOMediaCodec/libavif",
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": false,
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
@ -670,9 +692,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libpng": {
|
"libpng": {
|
||||||
"type": "git",
|
"type": "ghtagtar",
|
||||||
"url": "https://github.com/glennrp/libpng.git",
|
"repo": "pnggroup/libpng",
|
||||||
"rev": "libpng16",
|
"match": "v1\\.6\\.\\d+",
|
||||||
|
"query": "?per_page=150",
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": true,
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
@ -680,9 +703,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"librabbitmq": {
|
"librabbitmq": {
|
||||||
"type": "git",
|
"type": "ghtar",
|
||||||
"url": "https://github.com/alanxz/rabbitmq-c.git",
|
"repo": "alanxz/rabbitmq-c",
|
||||||
"rev": "master",
|
"prefer-stable": true,
|
||||||
"license": {
|
"license": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
@ -699,7 +722,7 @@
|
|||||||
"libsodium": {
|
"libsodium": {
|
||||||
"type": "ghrel",
|
"type": "ghrel",
|
||||||
"repo": "jedisct1/libsodium",
|
"repo": "jedisct1/libsodium",
|
||||||
"match": "libsodium-\\d+(\\.\\d+)*\\.tar\\.gz",
|
"match": "libsodium-(?!1\\.0\\.21)\\d+(\\.\\d+)*\\.tar\\.gz",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"provide-pre-built": true,
|
"provide-pre-built": true,
|
||||||
"license": {
|
"license": {
|
||||||
@ -871,6 +894,24 @@
|
|||||||
"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/",
|
||||||
|
|||||||
@ -549,22 +549,24 @@ 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 |
|
||||||
| before-php-buildconf | Triggered before compiling PHP command `./buildconf` |
|
| after-shared-ext[*name*]-build | Triggered after the shared extension named `name` is compiled |
|
||||||
| before-php-configure | Triggered before compiling PHP command `./configure` |
|
| before-shared-ext[*name*]-build | Triggered before the shared extension named `name` is compiled |
|
||||||
| before-php-make | Triggered before compiling PHP command `make` |
|
| before-php-buildconf | Triggered before compiling PHP command `./buildconf` |
|
||||||
| before-sanity-check | Triggered after compiling PHP but before running extended checks |
|
| before-php-configure | Triggered before compiling PHP command `./configure` |
|
||||||
|
| 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:
|
||||||
|
|||||||
@ -500,6 +500,8 @@ 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.7.11';
|
public const string VERSION = '2.8.3';
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -96,7 +96,8 @@ class Extension
|
|||||||
fn ($x) => $x->getStaticLibFiles(),
|
fn ($x) => $x->getStaticLibFiles(),
|
||||||
$this->getLibraryDependencies(recursive: true)
|
$this->getLibraryDependencies(recursive: true)
|
||||||
);
|
);
|
||||||
return implode(' ', $ret);
|
$libs = implode(' ', $ret);
|
||||||
|
return deduplicate_flags($libs);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -385,6 +386,9 @@ 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) {
|
||||||
@ -395,13 +399,12 @@ class Extension
|
|||||||
$dependency->buildShared([...$visited, $this->getName()]);
|
$dependency->buildShared([...$visited, $this->getName()]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (Config::getExt($this->getName(), 'type') === 'addon') {
|
$this->builder->emitPatchPoint('before-shared-ext[' . $this->getName() . ']-build');
|
||||||
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;
|
||||||
@ -452,12 +455,17 @@ class Extension
|
|||||||
|
|
||||||
// process *.so file
|
// process *.so file
|
||||||
$soFile = BUILD_MODULES_PATH . '/' . $this->getName() . '.so';
|
$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)) {
|
if (!file_exists($soFile)) {
|
||||||
throw new ValidationException("extension {$this->getName()} build failed: {$soFile} not found", validation_module: "Extension {$this->getName()} build");
|
throw new ValidationException("extension {$this->getName()} build failed: {$soFile} not found", validation_module: "Extension {$this->getName()} build");
|
||||||
}
|
}
|
||||||
/** @var UnixBuilderBase $builder */
|
/** @var UnixBuilderBase $builder */
|
||||||
$builder = $this->builder;
|
$builder = $this->builder;
|
||||||
$builder->deployBinary($soFile, $soFile, false);
|
$builder->deployBinary($soFile, $soDest, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -535,7 +543,7 @@ class Extension
|
|||||||
*/
|
*/
|
||||||
protected function getSharedExtensionEnv(): array
|
protected function getSharedExtensionEnv(): array
|
||||||
{
|
{
|
||||||
$config = (new SPCConfigUtil($this->builder))->getExtensionConfig($this);
|
$config = (new SPCConfigUtil($this->builder, ['no_php' => true]))->getExtensionConfig($this);
|
||||||
[$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 ';
|
||||||
@ -543,6 +551,7 @@ 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,
|
||||||
];
|
];
|
||||||
|
|||||||
@ -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,25 +346,46 @@ 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/' . $this->getName() . "/{$index}.txt", $license['text']);
|
FileSystem::writeFile(BUILD_ROOT_PATH . "/source-licenses/{$source}/{$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/' . $this->getName() . "/{$index}.txt");
|
copy($this->source_dir . '/' . $license['path'], BUILD_ROOT_PATH . "/source-licenses/{$source}/{$index}.txt");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function isLibraryInstalled(): bool
|
protected function isLibraryInstalled(): bool
|
||||||
{
|
{
|
||||||
|
if ($pkg_configs = Config::getLib(static::NAME, 'pkg-configs', [])) {
|
||||||
|
$pkg_config_path = getenv('PKG_CONFIG_PATH') ?: '';
|
||||||
|
$search_paths = array_unique(array_filter(explode(is_unix() ? ':' : ';', $pkg_config_path)));
|
||||||
|
|
||||||
|
foreach ($pkg_configs as $name) {
|
||||||
|
$found = false;
|
||||||
|
foreach ($search_paths as $path) {
|
||||||
|
if (file_exists($path . "/{$name}.pc")) {
|
||||||
|
$found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!$found) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// allow using system dependencies if pkg_config_path is explicitly defined
|
||||||
|
if (count($search_paths) > 1) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
foreach (Config::getLib(static::NAME, 'static-libs', []) as $name) {
|
foreach (Config::getLib(static::NAME, 'static-libs', []) as $name) {
|
||||||
if (!file_exists(BUILD_LIB_PATH . "/{$name}")) {
|
if (!file_exists(BUILD_LIB_PATH . "/{$name}")) {
|
||||||
return false;
|
return false;
|
||||||
@ -375,8 +396,17 @@ 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) {
|
||||||
if (!file_exists(BUILD_LIB_PATH . "/pkgconfig/{$name}.pc")) {
|
$found = false;
|
||||||
|
foreach ($search_paths as $path) {
|
||||||
|
if (file_exists($path . "/{$name}.pc")) {
|
||||||
|
$found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!$found) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
17
src/SPC/builder/extension/com_dotnet.php
Normal file
17
src/SPC/builder/extension/com_dotnet.php
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?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';
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -5,11 +5,21 @@ declare(strict_types=1);
|
|||||||
namespace SPC\builder\extension;
|
namespace SPC\builder\extension;
|
||||||
|
|
||||||
use SPC\builder\Extension;
|
use SPC\builder\Extension;
|
||||||
|
use SPC\builder\linux\SystemUtil;
|
||||||
|
use SPC\store\SourcePatcher;
|
||||||
use SPC\util\CustomExt;
|
use SPC\util\CustomExt;
|
||||||
|
|
||||||
#[CustomExt('ffi')]
|
#[CustomExt('ffi')]
|
||||||
class ffi extends Extension
|
class ffi extends Extension
|
||||||
{
|
{
|
||||||
|
public function patchBeforeBuildconf(): bool
|
||||||
|
{
|
||||||
|
if (PHP_OS_FAMILY === 'Linux' && SystemUtil::getOSRelease()['dist'] === 'centos') {
|
||||||
|
return SourcePatcher::patchFfiCentos7FixO3strncmp();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public function getUnixConfigureArg(bool $shared = false): string
|
public function getUnixConfigureArg(bool $shared = false): string
|
||||||
{
|
{
|
||||||
return '--with-ffi' . ($shared ? '=shared' : '') . ' --enable-zend-signals';
|
return '--with-ffi' . ($shared ? '=shared' : '') . ' --enable-zend-signals';
|
||||||
|
|||||||
@ -11,7 +11,6 @@ use SPC\store\FileSystem;
|
|||||||
use SPC\util\CustomExt;
|
use SPC\util\CustomExt;
|
||||||
use SPC\util\GlobalEnvManager;
|
use SPC\util\GlobalEnvManager;
|
||||||
use SPC\util\SPCConfigUtil;
|
use SPC\util\SPCConfigUtil;
|
||||||
use SPC\util\SPCTarget;
|
|
||||||
|
|
||||||
#[CustomExt('grpc')]
|
#[CustomExt('grpc')]
|
||||||
class grpc extends Extension
|
class grpc extends Extension
|
||||||
@ -21,22 +20,50 @@ 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');
|
||||||
}
|
}
|
||||||
if (file_exists(SOURCE_PATH . '/php-src/ext/grpc')) {
|
|
||||||
return false;
|
// Fix deprecated PHP API usage in call.c
|
||||||
}
|
FileSystem::replaceFileStr(
|
||||||
// soft link to the grpc source code
|
"{$this->source_dir}/src/php/ext/grpc/call.c",
|
||||||
if (is_dir($this->source_dir . '/src/php/ext/grpc')) {
|
'zend_exception_get_default(TSRMLS_C),',
|
||||||
shell()->exec('ln -s ' . $this->source_dir . '/src/php/ext/grpc ' . SOURCE_PATH . '/php-src/ext/grpc');
|
'zend_ce_exception,',
|
||||||
} else {
|
);
|
||||||
throw new ValidationException('Cannot find grpc source code in ' . $this->source_dir . '/src/php/ext/grpc');
|
|
||||||
}
|
$config_m4 = <<<'M4'
|
||||||
if (SPCTarget::getTargetOS() === 'Darwin') {
|
PHP_ARG_ENABLE(grpc, [whether to enable grpc support], [AS_HELP_STRING([--enable-grpc], [Enable grpc support])])
|
||||||
FileSystem::replaceFileRegex(
|
|
||||||
SOURCE_PATH . '/php-src/ext/grpc/config.m4',
|
if test "$PHP_GRPC" != "no"; then
|
||||||
'/GRPC_LIBDIR=.*$/m',
|
PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/include)
|
||||||
'GRPC_LIBDIR=' . BUILD_LIB_PATH . "\n" . 'LDFLAGS="$LDFLAGS -framework CoreFoundation"'
|
PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/src/php/ext/grpc)
|
||||||
);
|
GRPC_LIBDIR=@@build_lib_path@@
|
||||||
}
|
PHP_ADD_LIBPATH($GRPC_LIBDIR)
|
||||||
|
PHP_ADD_LIBRARY(grpc,,GRPC_SHARED_LIBADD)
|
||||||
|
LIBS="-lpthread $LIBS"
|
||||||
|
PHP_ADD_LIBRARY(pthread)
|
||||||
|
|
||||||
|
case $host in
|
||||||
|
*darwin*)
|
||||||
|
PHP_ADD_LIBRARY(c++,1,GRPC_SHARED_LIBADD)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
PHP_ADD_LIBRARY(stdc++,1,GRPC_SHARED_LIBADD)
|
||||||
|
PHP_ADD_LIBRARY(rt,,GRPC_SHARED_LIBADD)
|
||||||
|
PHP_ADD_LIBRARY(rt)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
PHP_NEW_EXTENSION(grpc, @grpc_c_files@, $ext_shared, , -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1)
|
||||||
|
PHP_SUBST(GRPC_SHARED_LIBADD)
|
||||||
|
PHP_INSTALL_HEADERS([ext/grpc], [php_grpc.h])
|
||||||
|
fi
|
||||||
|
M4;
|
||||||
|
$replace = get_pack_replace();
|
||||||
|
// load grpc c files from src/php/ext/grpc
|
||||||
|
$c_files = glob($this->source_dir . '/src/php/ext/grpc/*.c');
|
||||||
|
$replace['@grpc_c_files@'] = implode(" \\\n ", array_map(fn ($f) => 'src/php/ext/grpc/' . basename($f), $c_files));
|
||||||
|
$config_m4 = str_replace(array_keys($replace), array_values($replace), $config_m4);
|
||||||
|
file_put_contents($this->source_dir . '/config.m4', $config_m4);
|
||||||
|
|
||||||
|
copy($this->source_dir . '/src/php/ext/grpc/php_grpc.h', $this->source_dir . '/php_grpc.h');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -52,7 +79,6 @@ class grpc extends Extension
|
|||||||
public function patchBeforeMake(): bool
|
public function patchBeforeMake(): bool
|
||||||
{
|
{
|
||||||
parent::patchBeforeMake();
|
parent::patchBeforeMake();
|
||||||
// add -Wno-strict-prototypes
|
|
||||||
GlobalEnvManager::putenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS=' . getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS') . ' -Wno-strict-prototypes');
|
GlobalEnvManager::putenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS=' . getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_CFLAGS') . ' -Wno-strict-prototypes');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,6 +18,9 @@ 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',
|
||||||
@ -44,6 +47,24 @@ 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
|
protected function getExtraEnv(): array
|
||||||
{
|
{
|
||||||
return ['CFLAGS' => '-std=c17'];
|
return ['CFLAGS' => '-std=c17'];
|
||||||
|
|||||||
22
src/SPC/builder/extension/mysqlnd_ed25519.php
Normal file
22
src/SPC/builder/extension/mysqlnd_ed25519.php
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?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();
|
||||||
|
}
|
||||||
|
}
|
||||||
22
src/SPC/builder/extension/mysqlnd_parsec.php
Normal file
22
src/SPC/builder/extension/mysqlnd_parsec.php
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?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,25 +24,6 @@ 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,4 +45,11 @@ 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,6 +17,7 @@ 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';
|
||||||
@ -49,19 +50,16 @@ class swoole extends Extension
|
|||||||
|
|
||||||
// commonly used feature: coroutine-time
|
// commonly used feature: coroutine-time
|
||||||
$arg .= ' --enable-swoole-coro-time --with-pic';
|
$arg .= ' --enable-swoole-coro-time --with-pic';
|
||||||
|
$arg .= ' --enable-swoole-ssh --enable-swoole-curl';
|
||||||
|
|
||||||
$arg .= $this->builder->getOption('enable-zts') ? ' --enable-swoole-thread --disable-thread-context' : ' --disable-swoole-thread --enable-thread-context';
|
$arg .= $this->builder->getOption('enable-zts') ? ' --enable-swoole-thread --disable-thread-context' : ' --disable-swoole-thread --enable-thread-context';
|
||||||
|
|
||||||
// required features: curl, openssl (but curl hook is buggy for php 8.0)
|
|
||||||
$arg .= $this->builder->getPHPVersionID() >= 80100 ? ' --enable-swoole-curl' : ' --disable-swoole-curl';
|
|
||||||
$arg .= ' --enable-openssl';
|
|
||||||
|
|
||||||
// additional features that only require libraries
|
// additional features that only require libraries
|
||||||
$arg .= $this->builder->getLib('libcares') ? ' --enable-cares' : '';
|
$arg .= $this->builder->getLib('libcares') ? ' --enable-cares' : '';
|
||||||
$arg .= $this->builder->getLib('brotli') ? (' --enable-brotli --with-brotli-dir=' . BUILD_ROOT_PATH) : '';
|
$arg .= $this->builder->getLib('brotli') ? (' --enable-brotli --with-brotli-dir=' . BUILD_ROOT_PATH) : '';
|
||||||
$arg .= $this->builder->getLib('nghttp2') ? (' --with-nghttp2-dir=' . BUILD_ROOT_PATH) : '';
|
$arg .= $this->builder->getLib('nghttp2') ? (' --with-nghttp2-dir=' . BUILD_ROOT_PATH) : '';
|
||||||
$arg .= $this->builder->getLib('zstd') ? ' --enable-zstd' : '';
|
$arg .= $this->builder->getLib('zstd') ? ' --enable-zstd' : '';
|
||||||
$arg .= $this->builder->getLib('liburing') ? ' --enable-iouring' : '';
|
$arg .= $this->builder->getLib('liburing') ? ' --enable-iouring --enable-uring-socket' : '';
|
||||||
$arg .= $this->builder->getExt('sockets') ? ' --enable-sockets' : '';
|
$arg .= $this->builder->getExt('sockets') ? ' --enable-sockets' : '';
|
||||||
|
|
||||||
// enable additional features that require the pdo extension, but conflict with pdo_* extensions
|
// enable additional features that require the pdo extension, but conflict with pdo_* extensions
|
||||||
@ -73,6 +71,7 @@ class swoole extends Extension
|
|||||||
$config = (new SPCConfigUtil($this->builder))->getLibraryConfig($this->builder->getLib('unixodbc'));
|
$config = (new SPCConfigUtil($this->builder))->getLibraryConfig($this->builder->getLib('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'] . '"';
|
||||||
}
|
}
|
||||||
|
$arg .= $this->builder->getExt('ftp')?->isBuildStatic() ? ' --disable-swoole-ftp' : ' --enable-swoole-ftp';
|
||||||
|
|
||||||
if ($this->getExtVersion() >= '6.1.0') {
|
if ($this->getExtVersion() >= '6.1.0') {
|
||||||
$arg .= ' --enable-swoole-stdext';
|
$arg .= ' --enable-swoole-stdext';
|
||||||
|
|||||||
@ -283,11 +283,14 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
|
|
||||||
// process libphp.so for shared embed
|
// process libphp.so for shared embed
|
||||||
$libphpSo = BUILD_LIB_PATH . '/libphp.so';
|
$libphpSo = BUILD_LIB_PATH . '/libphp.so';
|
||||||
|
$libphpSoDest = BUILD_LIB_PATH . '/libphp.so';
|
||||||
if (file_exists($libphpSo)) {
|
if (file_exists($libphpSo)) {
|
||||||
// post actions: rename libphp.so to libphp-<release>.so if -release is set in LDFLAGS
|
|
||||||
$this->processLibphpSoFile($libphpSo);
|
|
||||||
// deploy libphp.so
|
// deploy libphp.so
|
||||||
$this->deployBinary($libphpSo, $libphpSo, false);
|
preg_match('/-release\s+(\S*)/', getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS'), $matches);
|
||||||
|
if (!empty($matches[1])) {
|
||||||
|
$libphpSoDest = str_replace('.so', '-' . $matches[1] . '.so', $libphpSo);
|
||||||
|
}
|
||||||
|
$this->deployBinary($libphpSo, $libphpSoDest, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// process shared extensions build-with-php
|
// process shared extensions build-with-php
|
||||||
@ -324,74 +327,6 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function processLibphpSoFile(string $libphpSo): void
|
|
||||||
{
|
|
||||||
$ldflags = getenv('SPC_CMD_VAR_PHP_MAKE_EXTRA_LDFLAGS') ?: '';
|
|
||||||
$libDir = BUILD_LIB_PATH;
|
|
||||||
$modulesDir = BUILD_MODULES_PATH;
|
|
||||||
$realLibName = 'libphp.so';
|
|
||||||
$cwd = getcwd();
|
|
||||||
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
$target = "{$libDir}/{$realLibName}";
|
|
||||||
if (file_exists($target)) {
|
|
||||||
[, $output] = shell()->execWithResult('readelf -d ' . escapeshellarg($target));
|
|
||||||
$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)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Patch micro.sfx after UPX compression.
|
* Patch micro.sfx after UPX compression.
|
||||||
* micro needs special section handling in LinuxBuilder.
|
* micro needs special section handling in LinuxBuilder.
|
||||||
|
|||||||
@ -21,6 +21,7 @@ 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
|
||||||
@ -51,6 +52,9 @@ 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)
|
||||||
@ -58,7 +62,7 @@ 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=/etc/ssl ' .
|
"--openssldir={$openssl_dir} " .
|
||||||
"{$zlib_extra}" .
|
"{$zlib_extra}" .
|
||||||
'enable-pie ' .
|
'enable-pie ' .
|
||||||
'no-legacy ' .
|
'no-legacy ' .
|
||||||
|
|||||||
@ -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_ROOT_PATH . '/lib/pkgconfig/' . $name);
|
$realpath = realpath(BUILD_LIB_PATH . '/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/ !');
|
||||||
}
|
}
|
||||||
|
|||||||
@ -74,10 +74,10 @@ trait UnixSystemUtilTrait
|
|||||||
}
|
}
|
||||||
// https://github.com/ziglang/zig/issues/24662
|
// https://github.com/ziglang/zig/issues/24662
|
||||||
if (ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
if (ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
||||||
return '-Wl,--export-dynamic';
|
return '-Wl,--export-dynamic'; // needs release 0.16, can be removed then
|
||||||
}
|
}
|
||||||
// macOS
|
// macOS/zig
|
||||||
if (SPCTarget::getTargetOS() !== 'Linux') {
|
if (SPCTarget::getTargetOS() !== 'Linux' || ToolchainManager::getToolchainClass() === ZigToolchain::class) {
|
||||||
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}";
|
||||||
|
|||||||
@ -145,11 +145,10 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
throw new SPCInternalException("Deploy failed. Cannot find file after copy: {$dst}");
|
throw new SPCInternalException("Deploy failed. Cannot find file after copy: {$dst}");
|
||||||
}
|
}
|
||||||
|
|
||||||
// extract debug info
|
|
||||||
$this->extractDebugInfo($dst);
|
|
||||||
|
|
||||||
// strip
|
|
||||||
if (!$this->getOption('no-strip')) {
|
if (!$this->getOption('no-strip')) {
|
||||||
|
// extract debug info
|
||||||
|
$this->extractDebugInfo($dst);
|
||||||
|
// extra strip
|
||||||
$this->stripBinary($dst);
|
$this->stripBinary($dst);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -236,8 +235,10 @@ 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 {
|
||||||
@ -256,18 +257,19 @@ 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 sanity check: build failed. Error message: ' . implode("\n", $out),
|
'embed failed to build. Error message: ' . implode("\n", $out),
|
||||||
validation_module: 'static libphp.a sanity check'
|
validation_module: $embedType . ' libphp embed build 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 sanity check: run failed. Error message: ' . implode("\n", $output),
|
'embed failed to run. Error message: ' . implode("\n", $output),
|
||||||
validation_module: 'static libphp.a sanity check'
|
validation_module: $embedType . ' libphp embed run sanity check'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -363,6 +365,7 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
$frankenphpAppPath = $this->getOption('with-frankenphp-app');
|
$frankenphpAppPath = $this->getOption('with-frankenphp-app');
|
||||||
|
|
||||||
if ($frankenphpAppPath) {
|
if ($frankenphpAppPath) {
|
||||||
|
$frankenphpAppPath = trim($frankenphpAppPath, "\"'");
|
||||||
if (!is_dir($frankenphpAppPath)) {
|
if (!is_dir($frankenphpAppPath)) {
|
||||||
throw new WrongUsageException("The path provided to --with-frankenphp-app is not a valid directory: {$frankenphpAppPath}");
|
throw new WrongUsageException("The path provided to --with-frankenphp-app is not a valid directory: {$frankenphpAppPath}");
|
||||||
}
|
}
|
||||||
@ -453,6 +456,8 @@ abstract class UnixBuilderBase extends BuilderBase
|
|||||||
'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 . ' ' .
|
||||||
|
'-X \'github.com/caddyserver/caddy/v2/modules/caddyhttp.ServerHeader=FrankenPHP Caddy\' ' .
|
||||||
|
'-X \'github.com/caddyserver/caddy/v2.CustomBinaryName=frankenphp\' ' .
|
||||||
'-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}",
|
||||||
|
|||||||
@ -16,7 +16,11 @@ trait gettext
|
|||||||
->addConfigureArgs(
|
->addConfigureArgs(
|
||||||
'--disable-java',
|
'--disable-java',
|
||||||
'--disable-c++',
|
'--disable-c++',
|
||||||
'--with-included-gettext',
|
'--disable-d',
|
||||||
|
'--disable-rpath',
|
||||||
|
'--disable-modula2',
|
||||||
|
'--disable-libasprintf',
|
||||||
|
'--with-included-libintl',
|
||||||
"--with-iconv-prefix={$this->getBuildRootPath()}",
|
"--with-iconv-prefix={$this->getBuildRootPath()}",
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -14,7 +14,9 @@ trait gmp
|
|||||||
->appendEnv([
|
->appendEnv([
|
||||||
'CFLAGS' => '-std=c17',
|
'CFLAGS' => '-std=c17',
|
||||||
])
|
])
|
||||||
->configure()
|
->configure(
|
||||||
|
'--enable-fat'
|
||||||
|
)
|
||||||
->make();
|
->make();
|
||||||
$this->patchPkgconfPrefix(['gmp.pc']);
|
$this->patchPkgconfPrefix(['gmp.pc']);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,6 +11,11 @@ trait libavif
|
|||||||
protected function build(): void
|
protected function build(): void
|
||||||
{
|
{
|
||||||
UnixCMakeExecutor::create($this)
|
UnixCMakeExecutor::create($this)
|
||||||
|
->optionalLib('libaom', '-DAVIF_CODEC_AOM=SYSTEM', '-DAVIF_CODEC_AOM=OFF')
|
||||||
|
->optionalLib('libsharpyuv', '-DAVIF_LIBSHARPYUV=SYSTEM', '-DAVIF_LIBSHARPYUV=OFF')
|
||||||
|
->optionalLib('libjpeg', '-DAVIF_JPEG=SYSTEM', '-DAVIF_JPEG=OFF')
|
||||||
|
->optionalLib('libxml2', '-DAVIF_LIBXML2=SYSTEM', '-DAVIF_LIBXML2=OFF')
|
||||||
|
->optionalLib('libpng', '-DAVIF_LIBPNG=SYSTEM', '-DAVIF_LIBPNG=OFF')
|
||||||
->addConfigureArgs('-DAVIF_LIBYUV=OFF')
|
->addConfigureArgs('-DAVIF_LIBYUV=OFF')
|
||||||
->build();
|
->build();
|
||||||
// patch pkgconfig
|
// patch pkgconfig
|
||||||
|
|||||||
@ -10,9 +10,10 @@ trait libwebp
|
|||||||
{
|
{
|
||||||
protected function build(): void
|
protected function build(): void
|
||||||
{
|
{
|
||||||
$code = 'int main() { return _mm256_cvtsi256_si32(_mm256_setzero_si256()); }';
|
$code = '#include <immintrin.h>
|
||||||
|
int main() { return _mm256_cvtsi256_si32(_mm256_setzero_si256()); }';
|
||||||
$cc = getenv('CC') ?: 'gcc';
|
$cc = getenv('CC') ?: 'gcc';
|
||||||
[$ret] = shell()->execWithResult("echo '{$code}' | {$cc} -x c -mavx2 -o /dev/null - 2>&1");
|
[$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';
|
$disableAvx2 = $ret !== 0 && GNU_ARCH === 'x86_64' && PHP_OS_FAMILY === 'Linux';
|
||||||
|
|
||||||
UnixCMakeExecutor::create($this)
|
UnixCMakeExecutor::create($this)
|
||||||
|
|||||||
@ -4,29 +4,14 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace SPC\builder\unix\library;
|
namespace SPC\builder\unix\library;
|
||||||
|
|
||||||
use SPC\exception\FileSystemException;
|
|
||||||
use SPC\store\FileSystem;
|
use SPC\store\FileSystem;
|
||||||
use SPC\util\PkgConfigUtil;
|
use SPC\util\PkgConfigUtil;
|
||||||
use SPC\util\SPCConfigUtil;
|
use SPC\util\SPCConfigUtil;
|
||||||
use SPC\util\SPCTarget;
|
|
||||||
|
|
||||||
trait postgresql
|
trait postgresql
|
||||||
{
|
{
|
||||||
public function patchBeforeBuild(): bool
|
public function patchBeforeBuild(): bool
|
||||||
{
|
{
|
||||||
// fix aarch64 build on glibc 2.17 (e.g. CentOS 7)
|
|
||||||
if (SPCTarget::getLibcVersion() === '2.17' && GNU_ARCH === 'aarch64') {
|
|
||||||
try {
|
|
||||||
FileSystem::replaceFileStr("{$this->source_dir}/src/port/pg_popcount_aarch64.c", 'HWCAP_SVE', '0');
|
|
||||||
FileSystem::replaceFileStr(
|
|
||||||
"{$this->source_dir}/src/port/pg_crc32c_armv8_choose.c",
|
|
||||||
'#if defined(__linux__) && !defined(__aarch64__) && !defined(HWCAP2_CRC32)',
|
|
||||||
'#if defined(__linux__) && !defined(HWCAP_CRC32)'
|
|
||||||
);
|
|
||||||
} catch (FileSystemException) {
|
|
||||||
// allow file not-existence to make it compatible with old and new version
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// skip the test on platforms where libpq infrastructure may be provided by statically-linked libraries
|
// skip the test on platforms where libpq infrastructure may be provided by statically-linked libraries
|
||||||
FileSystem::replaceFileStr("{$this->source_dir}/src/interfaces/libpq/Makefile", 'invokes exit\'; exit 1;', 'invokes exit\';');
|
FileSystem::replaceFileStr("{$this->source_dir}/src/interfaces/libpq/Makefile", 'invokes exit\'; exit 1;', 'invokes exit\';');
|
||||||
// disable shared libs build
|
// disable shared libs build
|
||||||
@ -50,7 +35,7 @@ trait postgresql
|
|||||||
$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', false));
|
||||||
|
|
||||||
$env_vars = [
|
$env_vars = [
|
||||||
'CFLAGS' => $config['cflags'],
|
'CFLAGS' => $config['cflags'] . ' -std=c17',
|
||||||
'CPPFLAGS' => '-DPIC',
|
'CPPFLAGS' => '-DPIC',
|
||||||
'LDFLAGS' => $config['ldflags'],
|
'LDFLAGS' => $config['ldflags'],
|
||||||
'LIBS' => $config['libs'],
|
'LIBS' => $config['libs'],
|
||||||
@ -108,8 +93,7 @@ trait postgresql
|
|||||||
|
|
||||||
// remove dynamic libs
|
// remove dynamic libs
|
||||||
shell()->cd($this->source_dir . '/build')
|
shell()->cd($this->source_dir . '/build')
|
||||||
->exec("rm -rf {$this->getBuildRootPath()}/lib/*.so.*")
|
->exec("rm -rf {$this->getBuildRootPath()}/lib/*.so*")
|
||||||
->exec("rm -rf {$this->getBuildRootPath()}/lib/*.so")
|
|
||||||
->exec("rm -rf {$this->getBuildRootPath()}/lib/*.dylib");
|
->exec("rm -rf {$this->getBuildRootPath()}/lib/*.dylib");
|
||||||
|
|
||||||
FileSystem::replaceFileStr("{$this->getLibDir()}/pkgconfig/libpq.pc", '-lldap', '-lldap -llber');
|
FileSystem::replaceFileStr("{$this->getLibDir()}/pkgconfig/libpq.pc", '-lldap', '-lldap -llber');
|
||||||
|
|||||||
@ -5,6 +5,7 @@ declare(strict_types=1);
|
|||||||
namespace SPC\builder\unix\library;
|
namespace SPC\builder\unix\library;
|
||||||
|
|
||||||
use SPC\exception\WrongUsageException;
|
use SPC\exception\WrongUsageException;
|
||||||
|
use SPC\store\FileSystem;
|
||||||
use SPC\util\executor\UnixAutoconfExecutor;
|
use SPC\util\executor\UnixAutoconfExecutor;
|
||||||
|
|
||||||
trait unixodbc
|
trait unixodbc
|
||||||
@ -30,7 +31,15 @@ trait unixodbc
|
|||||||
'--enable-gui=no',
|
'--enable-gui=no',
|
||||||
)
|
)
|
||||||
->make();
|
->make();
|
||||||
$this->patchPkgconfPrefix(['odbc.pc', 'odbccr.pc', 'odbcinst.pc']);
|
$pkgConfigs = ['odbc.pc', 'odbccr.pc', 'odbcinst.pc'];
|
||||||
|
$this->patchPkgconfPrefix($pkgConfigs);
|
||||||
|
foreach ($pkgConfigs as $file) {
|
||||||
|
FileSystem::replaceFileStr(
|
||||||
|
BUILD_LIB_PATH . "/pkgconfig/{$file}",
|
||||||
|
'$(top_build_prefix)libltdl/libltdlc.la',
|
||||||
|
''
|
||||||
|
);
|
||||||
|
}
|
||||||
$this->patchLaDependencyPrefix();
|
$this->patchLaDependencyPrefix();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -30,7 +30,7 @@ class DownloadCommand extends BaseCommand
|
|||||||
$this->addArgument('sources', InputArgument::REQUIRED, 'The sources will be compiled, comma separated');
|
$this->addArgument('sources', InputArgument::REQUIRED, 'The sources will be compiled, comma separated');
|
||||||
$this->addOption('shallow-clone', null, null, 'Clone shallow');
|
$this->addOption('shallow-clone', null, null, 'Clone shallow');
|
||||||
$this->addOption('with-openssl11', null, null, 'Use openssl 1.1');
|
$this->addOption('with-openssl11', null, null, 'Use openssl 1.1');
|
||||||
$this->addOption('with-php', null, InputOption::VALUE_REQUIRED, 'version in major.minor format (default 8.4)', '8.4');
|
$this->addOption('with-php', null, InputOption::VALUE_REQUIRED, 'version in major.minor format (default 8.5)', '8.5');
|
||||||
$this->addOption('clean', null, null, 'Clean old download cache and source before fetch');
|
$this->addOption('clean', null, null, 'Clean old download cache and source before fetch');
|
||||||
$this->addOption('all', 'A', null, 'Fetch all sources that static-php-cli needed');
|
$this->addOption('all', 'A', null, 'Fetch all sources that static-php-cli needed');
|
||||||
$this->addOption('custom-url', 'U', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'Specify custom source download url, e.g "php-src:https://downloads.php.net/~eric/php-8.3.0beta1.tar.gz"');
|
$this->addOption('custom-url', 'U', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'Specify custom source download url, e.g "php-src:https://downloads.php.net/~eric/php-8.3.0beta1.tar.gz"');
|
||||||
|
|||||||
@ -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)',
|
'PHP major version (supported: 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5)',
|
||||||
null,
|
null,
|
||||||
fn () => ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
fn () => ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
|
||||||
);
|
);
|
||||||
$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'])) {
|
if (!in_array($php_ver, ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'])) {
|
||||||
// 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,6 @@ 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 = [
|
||||||
@ -31,7 +30,6 @@ 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 = [
|
||||||
@ -39,8 +37,7 @@ 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',
|
'xz', 'libtool', 'gettext-devel', 'file',
|
||||||
'patchelf', 'file',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
public const TOOLS_ARCH = [
|
public const TOOLS_ARCH = [
|
||||||
|
|||||||
@ -97,8 +97,9 @@ 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}",
|
url: "https://api.github.com/repos/{$source['repo']}/{$type}{$source['query']}",
|
||||||
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);
|
||||||
@ -108,6 +109,9 @@ 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;
|
||||||
|
|||||||
@ -408,13 +408,13 @@ class FileSystem
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$sub_file = self::convertPath($dir . '/' . $v);
|
$sub_file = self::convertPath($dir . '/' . $v);
|
||||||
if (is_dir($sub_file)) {
|
if (is_link($sub_file) || is_file($sub_file)) {
|
||||||
# 如果是 目录 且 递推 , 则递推添加下级文件
|
if (!unlink($sub_file)) {
|
||||||
if (!self::removeDir($sub_file)) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} elseif (is_link($sub_file) || is_file($sub_file)) {
|
} elseif (is_dir($sub_file)) {
|
||||||
if (!unlink($sub_file)) {
|
# 如果是 目录 且 递推 , 则递推添加下级文件
|
||||||
|
if (!self::removeDir($sub_file)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,7 +22,7 @@ class SourcePatcher
|
|||||||
FileSystem::addSourceExtractHook('swoole', [__CLASS__, 'patchSwoole']);
|
FileSystem::addSourceExtractHook('swoole', [__CLASS__, 'patchSwoole']);
|
||||||
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchPhpLibxml212']);
|
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchPhpLibxml212']);
|
||||||
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchGDWin32']);
|
FileSystem::addSourceExtractHook('php-src', [__CLASS__, 'patchGDWin32']);
|
||||||
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('pdo_sqlsrv', [__CLASS__, 'patchSQLSRVPhp85']);
|
||||||
|
|||||||
@ -30,8 +30,8 @@ class GoXcaddy extends CustomPackage
|
|||||||
public function fetch(string $name, bool $force = false, ?array $config = null): void
|
public function fetch(string $name, bool $force = false, ?array $config = null): void
|
||||||
{
|
{
|
||||||
$pkgroot = PKG_ROOT_PATH;
|
$pkgroot = PKG_ROOT_PATH;
|
||||||
$go_exec = "{$pkgroot}/{$name}/bin/go";
|
$go_exec = "{$pkgroot}/go-xcaddy/bin/go";
|
||||||
$xcaddy_exec = "{$pkgroot}/{$name}/bin/xcaddy";
|
$xcaddy_exec = "{$pkgroot}/go-xcaddy/bin/xcaddy";
|
||||||
if ($force) {
|
if ($force) {
|
||||||
FileSystem::removeDir("{$pkgroot}/{$name}");
|
FileSystem::removeDir("{$pkgroot}/{$name}");
|
||||||
}
|
}
|
||||||
|
|||||||
@ -72,8 +72,11 @@ class Zig extends CustomPackage
|
|||||||
|
|
||||||
$latest_version = null;
|
$latest_version = null;
|
||||||
foreach ($index_json as $version => $data) {
|
foreach ($index_json as $version => $data) {
|
||||||
$latest_version = $version;
|
// Skip the master branch, get the latest stable release
|
||||||
break;
|
if ($version !== 'master') {
|
||||||
|
$latest_version = $version;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$latest_version) {
|
if (!$latest_version) {
|
||||||
|
|||||||
@ -6,15 +6,21 @@ namespace SPC\store\source;
|
|||||||
|
|
||||||
use JetBrains\PhpStorm\ArrayShape;
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use SPC\exception\DownloaderException;
|
use SPC\exception\DownloaderException;
|
||||||
|
use SPC\exception\SPCException;
|
||||||
use SPC\store\Downloader;
|
use SPC\store\Downloader;
|
||||||
|
|
||||||
class PhpSource extends CustomSourceBase
|
class PhpSource extends CustomSourceBase
|
||||||
{
|
{
|
||||||
public const NAME = 'php-src';
|
public const string NAME = 'php-src';
|
||||||
|
|
||||||
|
public const array WEB_PHP_DOMAINS = [
|
||||||
|
'https://www.php.net',
|
||||||
|
'https://phpmirror.static-php.dev',
|
||||||
|
];
|
||||||
|
|
||||||
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.5';
|
||||||
if ($major === 'git') {
|
if ($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 {
|
||||||
@ -28,21 +34,26 @@ class PhpSource extends CustomSourceBase
|
|||||||
#[ArrayShape(['type' => 'string', 'path' => 'string', 'rev' => 'string', 'url' => 'string'])]
|
#[ArrayShape(['type' => 'string', 'path' => 'string', 'rev' => 'string', 'url' => 'string'])]
|
||||||
public function getLatestPHPInfo(string $major_version): array
|
public function getLatestPHPInfo(string $major_version): array
|
||||||
{
|
{
|
||||||
// 查找最新的小版本号
|
foreach (self::WEB_PHP_DOMAINS as $domain) {
|
||||||
$info = json_decode(Downloader::curlExec(
|
try {
|
||||||
url: "https://www.php.net/releases/index.php?json&version={$major_version}",
|
$info = json_decode(Downloader::curlExec(
|
||||||
retries: (int) getenv('SPC_DOWNLOAD_RETRIES') ?: 0
|
url: "{$domain}/releases/index.php?json&version={$major_version}",
|
||||||
), true);
|
retries: (int) getenv('SPC_DOWNLOAD_RETRIES') ?: 0
|
||||||
if (!isset($info['version'])) {
|
), true);
|
||||||
throw new DownloaderException("Version {$major_version} not found.");
|
if (!isset($info['version'])) {
|
||||||
|
throw new DownloaderException("Version {$major_version} not found.");
|
||||||
|
}
|
||||||
|
$version = $info['version'];
|
||||||
|
return [
|
||||||
|
'type' => 'url',
|
||||||
|
'url' => "{$domain}/distributions/php-{$version}.tar.xz",
|
||||||
|
];
|
||||||
|
} catch (SPCException) {
|
||||||
|
logger()->warning('Failed to fetch latest PHP version for major version {$major_version} from {$domain}, trying next mirror if available.');
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
// exception if all mirrors failed
|
||||||
$version = $info['version'];
|
throw new DownloaderException("Failed to fetch latest PHP version for major version {$major_version} from all tried mirrors.");
|
||||||
|
|
||||||
// 从官网直接下载
|
|
||||||
return [
|
|
||||||
'type' => 'url',
|
|
||||||
'url' => "https://www.php.net/distributions/php-{$version}.tar.xz",
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -67,7 +67,8 @@ 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) {
|
||||||
GlobalEnvManager::putenv('SPC_EXTRA_PHP_VARS=php_cv_have_avx512=no php_cv_have_avx512vbmi=no');
|
$extra_vars = getenv('SPC_EXTRA_PHP_VARS') ?: '';
|
||||||
|
GlobalEnvManager::putenv("SPC_EXTRA_PHP_VARS=php_cv_have_avx512=no php_cv_have_avx512vbmi=no {$extra_vars}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -393,7 +393,7 @@ class ConfigValidator
|
|||||||
}
|
}
|
||||||
// check php-version
|
// check php-version
|
||||||
if (isset($craft['php-version'])) {
|
if (isset($craft['php-version'])) {
|
||||||
// validdate version, accept 8.x, 7.x, 8.x.x, 7.x.x, 8, 7
|
// validate version, accept 8.x, 7.x, 8.x.x, 7.x.x, 8, 7
|
||||||
$version = strval($craft['php-version']);
|
$version = strval($craft['php-version']);
|
||||||
if (!preg_match('/^(\d+)(\.\d+)?(\.\d+)?$/', $version, $matches)) {
|
if (!preg_match('/^(\d+)(\.\d+)?(\.\d+)?$/', $version, $matches)) {
|
||||||
throw new ValidationException('Craft file php-version is invalid');
|
throw new ValidationException('Craft file php-version is invalid');
|
||||||
|
|||||||
@ -80,7 +80,6 @@ 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}";
|
||||||
}
|
}
|
||||||
@ -226,9 +225,17 @@ 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) {
|
||||||
if (!file_exists(BUILD_LIB_PATH . "/pkgconfig/{$file}.pc")) {
|
$found = false;
|
||||||
throw new WrongUsageException("pkg-config file '{$file}.pc' for lib [{$library}] does not exist in '" . BUILD_LIB_PATH . "/pkgconfig'. Please build it first.");
|
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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$pc_cflags = implode(' ', $pc);
|
$pc_cflags = implode(' ', $pc);
|
||||||
@ -257,9 +264,17 @@ 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', []);
|
||||||
foreach ($pkg_configs as $pkg_config) {
|
$pkg_config_path = getenv('PKG_CONFIG_PATH') ?: '';
|
||||||
if (!file_exists(BUILD_LIB_PATH . "/pkgconfig/{$pkg_config}.pc")) {
|
$search_paths = array_filter(explode(is_unix() ? ':' : ';', $pkg_config_path));
|
||||||
throw new WrongUsageException("pkg-config file '{$pkg_config}.pc' for lib [{$library}] does not exist in '" . BUILD_LIB_PATH . "/pkgconfig'. Please build it first.");
|
foreach ($pkg_configs as $file) {
|
||||||
|
$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();
|
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist() && !getenv('SPC_MUSL_DYNAMIC');
|
||||||
}
|
}
|
||||||
if (ToolchainManager::getToolchainClass() === ClangNativeToolchain::class) {
|
if (ToolchainManager::getToolchainClass() === ClangNativeToolchain::class) {
|
||||||
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist();
|
return PHP_OS_FAMILY === 'Linux' && SystemUtil::isMuslDist() && !getenv('SPC_MUSL_DYNAMIC');
|
||||||
}
|
}
|
||||||
// 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')) {
|
||||||
|
|||||||
@ -16,12 +16,11 @@ class UnixAutoconfExecutor extends Executor
|
|||||||
|
|
||||||
protected array $configure_args = [];
|
protected array $configure_args = [];
|
||||||
|
|
||||||
protected array $ignore_args = [];
|
|
||||||
|
|
||||||
public function __construct(protected BSDLibraryBase|LinuxLibraryBase|MacOSLibraryBase $library)
|
public function __construct(protected BSDLibraryBase|LinuxLibraryBase|MacOSLibraryBase $library)
|
||||||
{
|
{
|
||||||
parent::__construct($library);
|
parent::__construct($library);
|
||||||
$this->initShell();
|
$this->initShell();
|
||||||
|
$this->configure_args = $this->getDefaultConfigureArgs();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -29,19 +28,12 @@ class UnixAutoconfExecutor extends Executor
|
|||||||
*/
|
*/
|
||||||
public function configure(...$args): static
|
public function configure(...$args): static
|
||||||
{
|
{
|
||||||
// remove all the ignored args
|
$args = array_merge($args, $this->configure_args);
|
||||||
$args = array_merge($args, $this->getDefaultConfigureArgs(), $this->configure_args);
|
|
||||||
$args = array_diff($args, $this->ignore_args);
|
|
||||||
$configure_args = implode(' ', $args);
|
$configure_args = implode(' ', $args);
|
||||||
|
|
||||||
return $this->seekLogFileOnException(fn () => $this->shell->exec("./configure {$configure_args}"));
|
return $this->seekLogFileOnException(fn () => $this->shell->exec("./configure {$configure_args}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getConfigureArgsString(): string
|
|
||||||
{
|
|
||||||
return implode(' ', array_merge($this->getDefaultConfigureArgs(), $this->configure_args));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Run make
|
* Run make
|
||||||
*
|
*
|
||||||
@ -111,7 +103,7 @@ class UnixAutoconfExecutor extends Executor
|
|||||||
*/
|
*/
|
||||||
public function removeConfigureArgs(...$args): static
|
public function removeConfigureArgs(...$args): static
|
||||||
{
|
{
|
||||||
$this->ignore_args = [...$this->ignore_args, ...$args];
|
$this->configure_args = array_diff($this->configure_args, $args);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,8 +125,8 @@ class UnixAutoconfExecutor extends Executor
|
|||||||
private function getDefaultConfigureArgs(): array
|
private function getDefaultConfigureArgs(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'--disable-shared',
|
|
||||||
'--enable-static',
|
'--enable-static',
|
||||||
|
'--disable-shared',
|
||||||
"--prefix={$this->library->getBuildRootPath()}",
|
"--prefix={$this->library->getBuildRootPath()}",
|
||||||
'--with-pic',
|
'--with-pic',
|
||||||
'--enable-pic',
|
'--enable-pic',
|
||||||
|
|||||||
@ -13,7 +13,7 @@ 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',
|
||||||
@ -23,19 +23,19 @@ $test_php_version = [
|
|||||||
|
|
||||||
// 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
|
||||||
'windows-2025',
|
// 'windows-2025',
|
||||||
];
|
];
|
||||||
|
|
||||||
// whether enable thread safe
|
// whether enable thread safe
|
||||||
$zts = true;
|
$zts = false;
|
||||||
|
|
||||||
$no_strip = false;
|
$no_strip = false;
|
||||||
|
|
||||||
@ -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' => 'curl',
|
'Linux', 'Darwin' => 'pdo_odbc',
|
||||||
'Windows' => 'bcmath',
|
'Windows' => 'com_dotnet',
|
||||||
};
|
};
|
||||||
|
|
||||||
// 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`).
|
||||||
@ -66,15 +66,15 @@ $with_suggested_libs = false;
|
|||||||
|
|
||||||
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
|
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
|
||||||
$with_libs = match (PHP_OS_FAMILY) {
|
$with_libs = match (PHP_OS_FAMILY) {
|
||||||
'Linux', 'Darwin' => 'libwebp',
|
'Linux', 'Darwin' => '',
|
||||||
'Windows' => 'nghttp2',
|
'Windows' => '',
|
||||||
};
|
};
|
||||||
|
|
||||||
// Please change your test base combination. We recommend testing with `common`.
|
// Please change your test base combination. We recommend testing with `common`.
|
||||||
// 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' => 'bulk',
|
||||||
'Windows' => 'none',
|
'Windows' => 'none',
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -89,7 +89,7 @@ function _getCombination(string $type = 'common'): string
|
|||||||
'common' => 'bcmath,bz2,calendar,ctype,curl,dom,exif,fileinfo,filter,ftp,gd,gmp,iconv,xml,mbstring,mbregex,' .
|
'common' => 'bcmath,bz2,calendar,ctype,curl,dom,exif,fileinfo,filter,ftp,gd,gmp,iconv,xml,mbstring,mbregex,' .
|
||||||
'mysqlnd,openssl,pcntl,pdo,pdo_mysql,pdo_sqlite,phar,posix,redis,session,simplexml,soap,sockets,' .
|
'mysqlnd,openssl,pcntl,pdo,pdo_mysql,pdo_sqlite,phar,posix,redis,session,simplexml,soap,sockets,' .
|
||||||
'sqlite3,tokenizer,xmlwriter,xmlreader,zlib,zip',
|
'sqlite3,tokenizer,xmlwriter,xmlreader,zlib,zip',
|
||||||
'bulk' => 'apcu,bcmath,bz2,calendar,ctype,curl,dba,dom,event,exif,fileinfo,filter,ftp,gd,gmp,iconv,imagick,imap,' .
|
'bulk' => 'apcu,bcmath,bz2,calendar,ctype,curl,dba,dom,event,exif,fileinfo,filter,ftp,gd,gmp,iconv,imagick,' .
|
||||||
'intl,mbregex,mbstring,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pgsql,phar,' .
|
'intl,mbregex,mbstring,mysqli,mysqlnd,opcache,openssl,pcntl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,pgsql,phar,' .
|
||||||
'posix,protobuf,readline,redis,session,shmop,simplexml,soap,sockets,sodium,sqlite3,swoole,sysvmsg,sysvsem,' .
|
'posix,protobuf,readline,redis,session,shmop,simplexml,soap,sockets,sodium,sqlite3,swoole,sysvmsg,sysvsem,' .
|
||||||
'sysvshm,tokenizer,xml,xmlreader,xmlwriter,xsl,zip,zlib',
|
'sysvshm,tokenizer,xml,xmlreader,xmlwriter,xsl,zip,zlib',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user