add back debug

This commit is contained in:
DubbleClick
2025-06-27 00:17:24 +07:00
parent 55d78579c8
commit cc4ec4b598
3 changed files with 7 additions and 7 deletions

View File

@@ -548,6 +548,11 @@ class Extension
return [trim($staticLibString), trim($sharedLibString)];
}
protected function getExtraEnv(): array
{
return [];
}
private function getLibraryDependencies(bool $recursive = false): array
{
$ret = array_filter($this->dependencies, fn ($x) => $x instanceof LibraryBase);
@@ -580,9 +585,4 @@ class Extension
}
return $deps;
}
protected function getExtraEnv(): array
{
return [];
}
}