Skip to content

Commit e408a2c

Browse files
committed
suggestion and aarch64 fix
1 parent b535600 commit e408a2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/en/guide/extension-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This extension contains an implementation of the coroutine environment for `pdo_
5252

5353
## imagick
5454

55-
1. Openmp support is disabled, this is recommended by the maintainers and also the case system packages.
55+
1. OpenMP support is disabled, this is recommended by the maintainers and also the case system packages.
5656

5757
## imap
5858

src/SPC/builder/linux/library/openssl.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ public function build(): void
6262

6363
$ex_lib = trim($ex_lib);
6464

65-
$clang_postfix = SystemUtil::getCCType() === 'clang' ? '-clang' : '';
65+
/* @phpstan-ignore-next-line */
66+
$clang_postfix = SystemUtil::getCCType() === 'clang' && (GNU_ARCH === 'x86_64' || PHP_OS_FAMILY === 'Darwin') ? '-clang' : '';
6667

6768
shell()->cd($this->source_dir)->initializeEnv($this)
6869
->exec(

0 commit comments

Comments
 (0)