Fix grpc build

This commit is contained in:
crazywhalecc 2026-03-09 20:12:14 +08:00
parent 8c4e3d58a3
commit ad356b4a23
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680
3 changed files with 10 additions and 5 deletions

View File

@ -255,6 +255,9 @@
"zlib", "zlib",
"openssl", "openssl",
"libcares" "libcares"
],
"frameworks": [
"CoreFoundation"
] ]
}, },
"iconv": { "iconv": {

View File

@ -33,6 +33,8 @@ class grpc extends Extension
'GRPC_LIBDIR=' . BUILD_LIB_PATH . "\n" . 'LDFLAGS="$LDFLAGS -framework CoreFoundation"' 'GRPC_LIBDIR=' . BUILD_LIB_PATH . "\n" . 'LDFLAGS="$LDFLAGS -framework CoreFoundation"'
); );
} }
FileSystem::replaceFileStr("{$this->source_dir}/config.m4", "CFLAGS=\"-std=c11 -g -O2\"\n", '');
file_put_contents("{$this->source_dir}/php_grpc.h", '#include "src/php/ext/grpc/php_grpc.h"');
return true; return true;
} }

View File

@ -16,15 +16,15 @@ $test_php_version = [
// '8.1', // '8.1',
// '8.2', // '8.2',
// '8.3', // '8.3',
// '8.4', '8.4',
'8.5', '8.5',
// 'git', // 'git',
]; ];
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available) // test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
$test_os = [ $test_os = [
// 'macos-15-intel', // bin/spc for x86_64 'macos-15-intel', // bin/spc for x86_64
// 'macos-15', // bin/spc for arm64 'macos-15', // bin/spc for arm64
// 'ubuntu-latest', // bin/spc-alpine-docker for x86_64 // 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
'ubuntu-24.04', // bin/spc for x86_64 'ubuntu-24.04', // bin/spc for x86_64
@ -35,7 +35,7 @@ $test_os = [
]; ];
// whether enable thread safe // whether enable thread safe
$zts = true; $zts = false;
$no_strip = false; $no_strip = false;
@ -50,7 +50,7 @@ $prefer_pre_built = false;
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) { $extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'pgsql', 'Linux', 'Darwin' => 'grpc',
'Windows' => 'com_dotnet', 'Windows' => 'com_dotnet',
}; };