60 lines
1.7 KiB
PHP
Raw Normal View History

2025-06-05 09:44:03 +07:00
<?php
declare(strict_types=1);
namespace SPC\builder\unix\library;
2025-06-06 14:49:09 +07:00
use SPC\builder\linux\LinuxBuilder;
use SPC\builder\macos\MacOSBuilder;
2025-06-05 09:44:03 +07:00
use SPC\exception\FileSystemException;
use SPC\exception\RuntimeException;
use SPC\exception\WrongUsageException;
trait ngtcp2
{
/**
* @throws FileSystemException
* @throws RuntimeException
* @throws WrongUsageException
*/
protected function build(): void
{
2025-06-06 14:49:09 +07:00
$available = [
2025-06-05 09:44:03 +07:00
'openssl' => null,
'libev' => null,
'jemalloc' => null,
2025-06-06 14:49:09 +07:00
];
if ($this->builder instanceof LinuxBuilder) {
$available = [...$available, ...[
'zlib' => null,
'libxml2' => null,
]];
}
$args = $this->builder->makeAutoconfArgs(static::NAME, $available);
if ($this->builder instanceof MacOSBuilder) {
$args = str_replace('=yes', '=' . BUILD_ROOT_PATH, $args);
}
2025-06-05 09:44:03 +07:00
shell()->cd($this->source_dir)
->setEnv([
'CFLAGS' => $this->getLibExtraCFlags(),
'LDFLAGS' => $this->getLibExtraLdFlags(),
2025-06-05 09:50:14 +07:00
'LIBS' => $this->getLibExtraLibs(),
2025-06-05 09:44:03 +07:00
])
->execWithEnv(
'./configure ' .
'--enable-static ' .
'--disable-shared ' .
'--with-pic ' .
'--enable-lib-only ' .
$args . ' ' .
'--prefix='
)
->execWithEnv('make clean')
->execWithEnv("make -j{$this->builder->concurrency}")
->execWithEnv('make install DESTDIR=' . BUILD_ROOT_PATH);
$this->patchPkgconfPrefix(['libngtcp2.pc']);
$this->patchPkgconfPrefix(['libngtcp2_crypto_ossl.pc']);
2025-06-05 09:44:03 +07:00
}
}