V8
追风弧箭
这个作者很懒,什么都没留下…
展开
-
VS2015编译google V8引擎
编译v8需要开启vpn,需要下载代码和依赖项。 google 编译文档 https://github.com/v8/v8/wiki/Building%20from%20Source 1、安装git 2、安装depot_tools,安装方法参照 https://www.chromium.org/developers/how-tos/install-depot-tools,注意下载解压的原创 2017-01-03 16:34:43 · 3889 阅读 · 5 评论 -
Javascript V8 引擎
1、暴露C++函数接口供js脚本调用: 假设有如下C++接口 void Print(const v8::FunctionCallbackInfo& args) { bool first = true; for (int i = 0; i < args.Length(); i++) { v8::HandleScope handle_scope(args.GetIsolate(原创 2017-02-23 18:42:13 · 1000 阅读 · 0 评论 -
V8嵌入指南
中英文地址:https://github.com/Chunlin-Li/Chunlin-Li.github.io/blob/master/blogs/javascript/V8_Embedder's_Guide_CHS.md 如果你已经阅读了入门指南, 一定知道 V8 是一个独立运行的虚拟机, 其中有些关键性概念比如: handles, scopes 和 contexts. 本文将深入讨论这些概翻译 2017-02-24 10:47:47 · 1949 阅读 · 0 评论