mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 05:14:52 +08:00
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder\unix\library;
|
|
|
|
use SPC\store\FileSystem;
|
|
use SPC\util\executor\UnixAutoconfExecutor;
|
|
|
|
trait librdkafka
|
|
{
|
|
public function patchBeforeBuild(): bool
|
|
{
|
|
FileSystem::replaceFileStr(
|
|
$this->source_dir . '/lds-gen.py',
|
|
"funcs.append('rd_ut_coverage_check')",
|
|
''
|
|
);
|
|
FileSystem::replaceFileStr(
|
|
$this->source_dir . '/src/rd.h',
|
|
'#error "IOV_MAX not defined"',
|
|
"#define IOV_MAX 1024\n#define __GNU__"
|
|
);
|
|
return true;
|
|
}
|
|
|
|
protected function build(): void
|
|
{
|
|
UnixAutoconfExecutor::create($this)
|
|
->appendEnv(['CFLAGS' => '-Wno-int-conversion -Wno-unused-but-set-variable -Wno-unused-variable'])
|
|
->optionalLib(
|
|
'zstd',
|
|
function ($lib) {
|
|
putenv("STATIC_LIB_libzstd={$lib->getLibDir()}/libzstd.a");
|
|
return '';
|
|
},
|
|
'--disable-zstd'
|
|
)
|
|
->removeConfigureArgs(
|
|
'--with-pic',
|
|
'--enable-pic',
|
|
)
|
|
->configure(
|
|
'--disable-curl',
|
|
'--disable-sasl',
|
|
'--disable-valgrind',
|
|
'--disable-zlib',
|
|
'--disable-ssl',
|
|
)
|
|
->make();
|
|
|
|
$this->patchPkgconfPrefix(['rdkafka.pc', 'rdkafka-static.pc', 'rdkafka++.pc', 'rdkafka++-static.pc']);
|
|
// remove dynamic libs
|
|
shell()
|
|
->exec("rm -rf {$this->getLibDir()}/*.so.*")
|
|
->exec("rm -rf {$this->getLibDir()}/*.so")
|
|
->exec("rm -rf {$this->getLibDir()}/*.dylib");
|
|
}
|
|
}
|