1

我已经用谷歌搜索了这个,直到我脸色发青——无论我尝试什么,我似乎都无法安装 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 上运行

任何帮助表示赞赏。

4

2 回答 2

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

最后你必须在bcompiler.ini里面 创建一个ini文件

/etc/php5/apache2/conf.d

并添加这一行

extension=bcompiler.so 

最后重新启动您的网络服务器

会正常工作

于 2014-07-23T12:26:24.027 回答
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 :)

于 2013-07-17T12:29:53.260 回答