We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d45415 commit be0b98cCopy full SHA for be0b98c
src/SPC/builder/extension/uv.php
@@ -21,7 +21,7 @@ public function validate(): void
21
22
public function patchBeforeSharedMake(): bool
23
{
24
- if (SystemUtil::getLibcVersionIfExists() >= '2.17') {
+ if (PHP_OS_FAMILY !== 'Linux' || php_uname('m') !== 'aarch64' || SystemUtil::getLibcVersionIfExists() > '2.17') {
25
return false;
26
}
27
FileSystem::replaceFileRegex($this->source_dir . '/Makefile', '/^(LDFLAGS =.*)$/', '$1 -luv -ldl -lrt -pthread');
0 commit comments