我遵循本指南:https://github.com/phpv8/v8js/blob/master/README.Linux.md
我有个问题:
如果不想覆盖v8的系统副本,请在
上面的命令使用其他路径,如/opt/v8,然后添加
--在下面的php-v8js./configure命令中使用-v8js=/opt/v8。
我应该把--with-v8js=/opt/v8放在配置文件的哪里?
这是配置文件:http://expirebox.com/download/85d34ccf80cc75afc5fb41b3ae0ceec2.html
最佳答案
and then add --with-v8js=/opt/v8 to the php-v8js ./configure command
cd /tmp
git clone https://github.com/phpv8/v8js.git
cd v8js
phpize
./configure --with-v8js=/opt/v8 <---this is where you add it
make
make test
sudo make install