only disable openmp for rh devtoolset-10

This commit is contained in:
DubbleClick
2025-05-30 20:41:17 +07:00
parent 3867b9933d
commit 5382362168
3 changed files with 7 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ class imagick extends Extension
{
public function patchBeforeMake(): bool
{
if (getenv('SPC_LIBC') !== 'musl') {
if (getenv('SPC_LIBC') === 'glibc' && str_contains(getenv('CC'), 'devtoolset-10')) {
return false;
}
// imagick with calls omp_pause_all which requires -lgomp, on non-musl we build imagick without openmp