当前位置:首页 > 大杂烩 > 正文内容

configure: error: Please reinstall the v8 distribution,checking for libv8_libplatform... configure:

高老师4年前 (2021-05-17)大杂烩1301

(1).configure: error: Please reinstall the v8 distribution

错误原因,源码中默认读取的目录是usr/lib和/usr/include/把自己的v8复制一份过去。

cp /usr/lib64/libv8.so /usr/lib/

cp /usr/include/v8*  /usr/include/

(2).checking for libv8_libplatform... configure: error: could not find libv8_libplatform library

错误原因v8js版本太低

通过windows版本的php --ri  v8js 看到需要安装 7.4.288.28版本

扫描二维码推送至手机访问。

版权声明:本文由高久峰个人博客发布,如需转载请注明出处。

本文链接:https://blog.20230611.cn/post/597.html

分享给朋友:

“configure: error: Please reinstall the v8 distribution,checking for libv8_libplatform... configure: ” 的相关文章

Git本地仓库学习

Git本地仓库学习

1.全局用户信息设置 git  config  --global  user.name  gaojiufeng git  config  --global  user.email  392223903...

Git推送文件到远程仓库

Git推送文件到远程仓库

1.远程仓库的协作模式开发者把自己最新的版本推到线上仓库,同时把线上仓库的最新代码,拉到自己本地即可2.注册git帐号国外: http://www.github.com国内: http://git.oschina.net2.在码云创建项目,不要初始化readmegit push https://gi...

Git从远程仓库更新文件

Git从远程仓库更新文件

 git   pull  https://git.oschina.net/392223903/learn.git   master   换为您的git地址...

c#关闭计算机的代码

c#关闭计算机的代码

    1.关机Process.Start("shutdown", "-s -t 0");    2. 注销  Proc...

C# md5加密,C# md5加密代码

C# md5加密,C# md5加密代码

public static string GetMD5(string str) {     //创建MD5对象     MD5 md5 = MD5.C...

nginx配置https,nginx ssl配置

nginx配置https,nginx ssl配置

首先在阿里云申请免费的证书,选择自动生成证书。然后就是nginx虚拟主机配置文件的修改。以下是我的配置文件(因为公司开发小程序,没有办法只能使用https)。您只需要关注带有ssl的配置选项,我增加了一个监听80和443的端口,同时增加了http跳转https的配置server  &nbs...