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.
2 parents 6b5aaa3 + e6832ec commit 3804e84Copy full SHA for 3804e84
2 files changed
config/ext.json
@@ -694,7 +694,8 @@
694
"arg-type": "custom",
695
"ext-suggests": [
696
"session",
697
- "igbinary"
+ "igbinary",
698
+ "msgpack"
699
],
700
"lib-suggests-unix": [
701
"zstd",
src/SPC/builder/extension/imagick.php
@@ -19,7 +19,7 @@ public function getUnixConfigureArg(bool $shared = false): string
19
protected function splitLibsIntoStaticAndShared(string $allLibs): array
20
{
21
[$static, $shared] = parent::splitLibsIntoStaticAndShared($allLibs);
22
- if (str_contains(getenv('PATH'), 'rh/devtoolset-10')) {
+ if (str_contains(getenv('PATH'), 'rh/devtoolset') || str_contains(getenv('PATH'), 'rh/gcc-toolset')) {
23
$static .= ' -l:libstdc++.a';
24
$shared = str_replace('-lstdc++', '', $shared);
25
}
0 commit comments