mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-04 15:25:41 +08:00
78 lines
3.0 KiB
PHP
78 lines
3.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\toolchain;
|
|
|
|
use SPC\builder\linux\SystemUtil;
|
|
use SPC\exception\WrongUsageException;
|
|
use SPC\util\GlobalEnvManager;
|
|
use SPC\util\PkgConfigUtil;
|
|
use SPC\util\SPCTarget;
|
|
|
|
class ToolchainManager
|
|
{
|
|
public const array OS_DEFAULT_TOOLCHAIN = [
|
|
'Linux' => ZigToolchain::class,
|
|
'Windows' => MSVCToolchain::class,
|
|
'Darwin' => ClangNativeToolchain::class,
|
|
'BSD' => ClangNativeToolchain::class,
|
|
];
|
|
|
|
public static function getToolchainClass(): string
|
|
{
|
|
if ($tc = getenv('SPC_TOOLCHAIN')) {
|
|
return $tc;
|
|
}
|
|
$libc = getenv('SPC_LIBC');
|
|
if ($libc && !getenv('SPC_TARGET')) {
|
|
// trigger_error('Setting SPC_LIBC is deprecated, please use SPC_TARGET instead.', E_USER_DEPRECATED);
|
|
return match ($libc) {
|
|
'musl' => SystemUtil::isMuslDist() ? GccNativeToolchain::class : MuslToolchain::class,
|
|
'glibc' => !SystemUtil::isMuslDist() ? GccNativeToolchain::class : throw new WrongUsageException('SPC_LIBC must be musl for musl dist.'),
|
|
default => throw new WrongUsageException('Unsupported SPC_LIBC value: ' . $libc),
|
|
};
|
|
}
|
|
|
|
return self::OS_DEFAULT_TOOLCHAIN[PHP_OS_FAMILY];
|
|
}
|
|
|
|
public static function initToolchain(): void
|
|
{
|
|
$toolchainClass = self::getToolchainClass();
|
|
/* @var ToolchainInterface $toolchainClass */
|
|
(new $toolchainClass())->initEnv();
|
|
GlobalEnvManager::putenv("SPC_TOOLCHAIN={$toolchainClass}");
|
|
}
|
|
|
|
public static function afterInitToolchain(): void
|
|
{
|
|
if (!getenv('SPC_TOOLCHAIN')) {
|
|
throw new WrongUsageException('SPC_TOOLCHAIN was not properly set. Please contact the developers.');
|
|
}
|
|
$musl_wrapper_lib = sprintf('/lib/ld-musl-%s.so.1', php_uname('m'));
|
|
if (SPCTarget::getLibc() === 'musl' && !SPCTarget::isStatic() && !file_exists($musl_wrapper_lib)) {
|
|
throw new WrongUsageException('You are linking against musl libc dynamically, but musl libc is not installed. Please use `bin/spc doctor` to install it.');
|
|
}
|
|
if (SPCTarget::getLibc() === 'glibc' && SystemUtil::isMuslDist()) {
|
|
throw new WrongUsageException('You are linking against glibc dynamically, which is only supported on glibc distros.');
|
|
}
|
|
|
|
// init pkg-config for unix
|
|
if (is_unix()) {
|
|
if (($found = PkgConfigUtil::findPkgConfig()) === null) {
|
|
throw new WrongUsageException('Cannot find pkg-config executable. Please run `doctor` to fix this.');
|
|
}
|
|
GlobalEnvManager::putenv("PKG_CONFIG={$found}");
|
|
}
|
|
|
|
$toolchain = getenv('SPC_TOOLCHAIN');
|
|
/* @var ToolchainInterface $toolchain */
|
|
$instance = new $toolchain();
|
|
$instance->afterInit();
|
|
if (getenv('PHP_BUILD_COMPILER') === false && ($compiler_info = $instance->getCompilerInfo())) {
|
|
GlobalEnvManager::putenv("PHP_BUILD_COMPILER={$compiler_info}");
|
|
}
|
|
}
|
|
}
|