Skip to content

Commit

Permalink
add back required -lgomp for imagick extension
Browse files Browse the repository at this point in the history
  • Loading branch information
DubbleClick committed Oct 27, 2023
1 parent e00908d commit e84a246
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/SPC/builder/extension/imagick.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public function patchBeforeMake(): bool
{
// imagick may call omp_pause_all which requires -lgomp
$extra_libs = $this->builder->getOption('extra-libs', '');
$extra_libs .= ' -lgomp ';
$this->builder->setOption('extra-libs', $extra_libs);
return true;
}
Expand Down

0 comments on commit e84a246

Please sign in to comment.