mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-04 23:35:40 +08:00
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
use SPC\builder\linux\library\LinuxLibraryBase;
|
|
use SPC\builder\macos\library\MacOSLibraryBase;
|
|
use SPC\util\executor\UnixAutoconfExecutor;
|
|
|
|
trait libxslt
|
|
{
|
|
protected function build(): void
|
|
{
|
|
$static_libs = $this instanceof LinuxLibraryBase ? $this->getStaticLibFiles(include_self: false) : '';
|
|
$cpp = $this instanceof MacOSLibraryBase ? '-lc++' : '-lstdc++';
|
|
$ac = UnixAutoconfExecutor::create($this)
|
|
->appendEnv([
|
|
'CFLAGS' => "-I{$this->getIncludeDir()}",
|
|
'LDFLAGS' => "-L{$this->getLibDir()}",
|
|
'LIBS' => "{$static_libs} {$cpp}",
|
|
])
|
|
->addConfigureArgs(
|
|
'--without-python',
|
|
'--without-crypto',
|
|
'--without-debug',
|
|
'--without-debugger',
|
|
"--with-libxml-prefix={$this->getBuildRootPath()}",
|
|
);
|
|
if (getenv('SPC_LD_LIBRARY_PATH') && getenv('SPC_LIBRARY_PATH')) {
|
|
$ac->appendEnv([
|
|
'LD_LIBRARY_PATH' => getenv('SPC_LD_LIBRARY_PATH'),
|
|
'LIBRARY_PATH' => getenv('SPC_LIBRARY_PATH'),
|
|
]);
|
|
}
|
|
$ac->configure()->make();
|
|
|
|
$this->patchPkgconfPrefix(['libexslt.pc', 'libxslt.pc']);
|
|
$this->patchLaDependencyPrefix();
|
|
$AR = getenv('AR') ?: 'ar';
|
|
shell()->cd(BUILD_LIB_PATH)
|
|
->exec("{$AR} -t libxslt.a | grep '\\.a$' | xargs -n1 {$AR} d libxslt.a")
|
|
->exec("{$AR} -t libexslt.a | grep '\\.a$' | xargs -n1 {$AR} d libexslt.a");
|
|
}
|
|
}
|