mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-04 15:25:41 +08:00
52 lines
1.7 KiB
PHP
52 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Package\Extension;
|
|
|
|
use Package\Target\php;
|
|
use StaticPHP\Attribute\Package\BeforeStage;
|
|
use StaticPHP\Attribute\Package\Extension;
|
|
use StaticPHP\Attribute\Package\Validate;
|
|
use StaticPHP\Exception\ValidationException;
|
|
use StaticPHP\Package\PhpExtensionPackage;
|
|
use StaticPHP\Runtime\SystemTarget;
|
|
use StaticPHP\Util\FileSystem;
|
|
|
|
#[Extension('uv')]
|
|
class uv extends PhpExtensionPackage
|
|
{
|
|
#[Validate]
|
|
public function validate(): void
|
|
{
|
|
if (php::getPHPVersionID() < 80000 && getenv('SPC_SKIP_PHP_VERSION_CHECK') !== 'yes') {
|
|
throw new ValidationException('The latest uv extension requires PHP 8.0 or later');
|
|
}
|
|
}
|
|
|
|
#[BeforeStage('php', [php::class, 'buildconfForWindows'], 'ext-uv')]
|
|
public function patchBeforeBuild(): void
|
|
{
|
|
FileSystem::replaceFileStr(
|
|
"{$this->getSourceDir()}/php_uv.c",
|
|
'#if !defined(PHP_WIN32) || defined(HAVE_SOCKET)',
|
|
'#if !defined(PHP_WIN32) || (defined(HAVE_SOCKETS) && !defined(COMPILE_DL_SOCKETS))',
|
|
);
|
|
FileSystem::replaceFileStr(
|
|
"{$this->getSourceDir()}/config.w32",
|
|
'CHECK_LIB("Ws2_32.lib","uv", PHP_UV);',
|
|
"CHECK_LIB(\"Ws2_32.lib\",\"uv\" , PHP_UV);\n\tCHECK_LIB(\"dbghelp.lib\",\"uv\", PHP_UV);",
|
|
);
|
|
}
|
|
|
|
#[BeforeStage('ext-uv', [PhpExtensionPackage::class, 'makeForUnix'])]
|
|
public function patchBeforeSharedMake(PhpExtensionPackage $pkg): bool
|
|
{
|
|
if (SystemTarget::getTargetOS() !== 'Linux' || SystemTarget::getTargetArch() !== 'aarch64') {
|
|
return false;
|
|
}
|
|
FileSystem::replaceFileRegex("{$pkg->getSourceDir()}/Makefile", '/^(LDFLAGS =.*)$/m', '$1 -luv -ldl -lrt -pthread');
|
|
return true;
|
|
}
|
|
}
|