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 8293160 commit 5cd987bCopy full SHA for 5cd987b
src/SPC/builder/Extension.php
@@ -342,6 +342,9 @@ public function buildShared(): void
342
return;
343
}
344
345
+ if (file_exists(BUILD_MODULES_PATH . '/' . $this->getName() . '.so')) {
346
+ logger()->info('Shared extension [' . $this->getName() . '] was already built, skipping (' . $this->getName() . '.so)');
347
+ }
348
logger()->info('Building extension [' . $this->getName() . '] as shared extension (' . $this->getName() . '.so)');
349
foreach ($this->dependencies as $dependency) {
350
if (!$dependency instanceof Extension) {
0 commit comments