如何安装" pthreads"在OSX上,PHP 5.5.30

时间:2015-12-30 18:14:03

标签: php macos

我无法找到如何在OSX上安装此内容的任何分步指南。如果可能的话,我不想重新编译PHP。

我是否可以从某个地方安装只能启用pthreads的软件包?我尝试过:

pecl install pthreads

pecl/pthreads requires PHP (version >= 7.0.0RC5), installed version is 5.5.30
No valid packages found

1 个答案:

答案 0 :(得分:5)

将php更新为版本> = 7.0.0RC5或安装其他版本的pthreads

pecl install pthreads-2.0.10

此外,pthreads将要求php使用标志--enable-maintainer-zts进行配置。它是在php编译中设置的。

./configure ... --enable-maintainer-zts ...
make
make install