Use none base combination

This commit is contained in:
crazywhalecc 2025-08-01 15:01:55 +08:00
parent ac2eb3adae
commit 1c9fbdb032

View File

@ -73,7 +73,7 @@ $with_libs = match (PHP_OS_FAMILY) {
// You can use `common`, `bulk`, `minimal` or `none`.
// note: combination is only available for *nix platform. Windows must use `none` combination
$base_combination = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'common',
'Linux', 'Darwin' => 'none',
'Windows' => 'none',
};