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 32efeb9 commit bba390dCopy full SHA for bba390d
src/SPC/util/shell/UnixShell.php
@@ -8,6 +8,7 @@
8
use SPC\builder\linux\library\LinuxLibraryBase;
9
use SPC\builder\macos\library\MacOSLibraryBase;
10
use SPC\exception\SPCInternalException;
11
+use SPC\util\SPCTarget;
12
use ZM\Logger\ConsoleColor;
13
14
/**
@@ -48,7 +49,7 @@ public function initializeEnv(BSDLibraryBase|LinuxLibraryBase|MacOSLibraryBase $
48
49
'CFLAGS' => $library->getLibExtraCFlags(),
50
'CXXFLAGS' => $library->getLibExtraCXXFlags(),
51
'LDFLAGS' => $library->getLibExtraLdFlags(),
- 'LIBS' => $library->getLibExtraLibs(),
52
+ 'LIBS' => $library->getLibExtraLibs() . SPCTarget::getRuntimeLibs(),
53
]);
54
return $this;
55
}
0 commit comments