我已经搜索了这个,直到我脸红了 - 无论我尝试什么,我都无法安装bcompiler。
我在Windows上运行xampp 1.8.1
# pecl install bcompiler
downloading bcompiler-1.0.2.tgz ...
Starting to download bcompiler-1.0.2.tgz (57,347 bytes)
..............done: 57,347 bytes
11 source files, building
ERROR: The DSP bcompiler.dsp does not exist.
我也尝试下载扩展源并构建它虽然这有点超出我的深度 - 然后我收到错误,msdev的输出不被理解。
我也试过回过几个版本的xampp,没有运气,但我真的希望这个在php 5.4上运行
任何帮助表示感谢。
答案 0 :(得分:3)
您可以执行以下步骤在Linux上安装bcompiler
root@linux# wget http://pecl.php.net/get/bcompiler-1.0.2.tgz
root@linux# tar -xvf bcompiler-1.0.2.tgz
root@linux# cd bcompiler-1.0.2
root@linux# phpize
root@linux# ./configure
root@linux# make
root@linux# make install
root@linux# make test
最后你必须在
中创建一个ini文件bcompiler.ini
/etc/php5/apache2/conf.d
并添加此行
extension=bcompiler.so
最后重启你的网络服务器
可以正常使用
答案 1 :(得分:1)
只需从http://pecl.php.net/package/bcompiler
下载文件即可操作: - 只需确保,您读取输出,它会告诉您bcompiler.so文件已保存在哪里。
root@linux# wget http://pecl.php.net/get/bcompiler-1.0.2.tgz
root@linux# tar -xvf bcompiler-1.0.2.tgz
root@linux# cd bcompiler-1.0.2
root@linux# phpize
root@linux# ./configure
root@linux# make
root@linux# make install
root@linux# make test
如果没有出错,那么bcompiler.so文件必须放在'ext'目录..
现在开始使用你的bcompiler如果一切正常:)