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 056971f commit 0fde4ceCopy full SHA for 0fde4ce
src/SPC/builder/Extension.php
@@ -369,6 +369,9 @@ public function buildShared(): void
369
*/
370
public function buildUnixShared(): void
371
{
372
+ if (file_exists(BUILD_MODULES_PATH . '/' . $this->getName() . '.so')) {
373
+ unlink(BUILD_MODULES_PATH . '/' . $this->getName() . '.so');
374
+ }
375
$config = (new SPCConfigUtil($this->builder))->config([$this->getName()], with_dependencies: true);
376
[$staticLibString, $sharedLibString] = $this->getStaticAndSharedLibs();
377
0 commit comments