在 Windows 上构建 V8 不输出 v8_base.lib
Posted
技术标签:
【中文标题】在 Windows 上构建 V8 不输出 v8_base.lib【英文标题】:Building V8 on Windows does not output v8_base.lib 【发布时间】:2019-11-20 19:17:12 【问题描述】:我想构建 V8 并将其嵌入到 C++ 程序中,以使用 SWIG 允许 javascript 应用调用 C++ 库。但是,按照构建 V8 的步骤后,我缺少一些用于链接到 V8 的重要库(例如 V8_base.lib):
-
获取 v8
cd v8
git 拉取源
gclient 同步
python 工具/dev/v8gen.py x64.release
ninja -C out.gn/x64.release
我有 DEPOT_TOOLS_WIN_TOOLCHAIN = 0 和 GYP_MSVS_VERSION = 2019。 我的 args.gn 如下(我已经建立了有和没有最后一行):
is_debug = false
target_cpu = "x64"
is_component_build = false
v8_static_library = true
is_clang = false
use_lld = false
成功构建后,我发现 out.gn\x64.release\obj 下没有 v8_base.lib 文件,因为所有文档都表明应该有。奇怪的是,我看到一个 v8.stamp 和 v8_base.stamp 文件,但没有对应的 *.lib。我错过了什么?是否不再需要这些库来嵌入到 C++ 程序中?
【问题讨论】:
【参考方案1】:概述
The instructions on the website to build a sample app 比你现在遵循的任何指令都好一点
v8_base.a
目标已于 2019 年 4 月从 build.gn
文件 here 中删除
先决条件
-
Python2(适用于较新版本的 Python3)
吉特
Ninja
G++(或 clang)
更新了构建 v8 的说明(在 linux/macos 上)
这是我今天成功编译和运行 v8 所遵循的步骤
-
安装google的depot工具:
git clone "https://chromium.googlesource.com/chromium/tools/depot_tools.git" ./depot_tools
将 depot 工具添加到您的路径 export PATH=$(pwd)/depot_tools:$PATH
如果您是在 windows 上构建,请务必将 DEPOT_TOOLS_WIN_TOOLCHAIN=0
设置为环境变量
下载 v8:fetch v8
或 fetch --no-history v8
移入v8目录cd v8
为您的系统生成一个版本(可能):tools/dev/v8gen.py x64.release
对以下构建参数运行 gn args out.gn/x64.release
:
is_debug = false
target_cpu = "x64"
use_custom_libcxx = false
v8_monolithic = true
v8_use_external_startup_data = false
is_clang = whether or not you're using clang
(* 更多here)
-
gn 会在您关闭编辑器时自动重新生成构建文件
构建 v8(慢)
ninja -C out.gn/x64.release
使用您新创建的 v8 库
在项目目录的根目录中创建一个名为 src
的文件夹,并在该文件夹中创建一个新文件 main.cc
,如下所示:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "include/libplatform/libplatform.h"
#include "include/v8.h"
int main(int argc, char* argv[])
v8::V8::InitializeICUDefaultLocation(argv[0]);
std::unique_ptr<v8::Platform> platform = v8::platform::NewDefaultPlatform();
v8::V8::InitializePlatform(platform.get());
v8::V8::Initialize();
v8::Isolate::CreateParams create_params;
create_params.array_buffer_allocator = v8::ArrayBuffer::Allocator::NewDefaultAllocator();
v8::Isolate* isolate = v8::Isolate::New(create_params);
v8::Isolate::Scope isolate_scope(isolate);
v8::HandleScope handle_scope(isolate); // Create a stack-allocated handle scope.
v8::Local<v8::Context> context = v8::Context::New(isolate); // Create a new context.
v8::Context::Scope context_scope(context); // Enter the context for compiling and running the hello world script.
v8::Local<v8::String> source = v8::String::NewFromUtf8(isolate, "Object.keys( h: 1, e: 2, ll: 3, o: 4, _: 5, w: 6, or: 7, l: 8, d: 9 )", v8::NewStringType::kNormal).ToLocalChecked(); // Create a string containing the JavaScript source code.
v8::Local<v8::Script> script = v8::Script::Compile(context, source).ToLocalChecked(); // Compile the source code.
v8::Local<v8::Value> result = script->Run(context).ToLocalChecked(); // Run the script to get the result.
v8::String::Utf8Value utf8(isolate, result); // Convert the result to an UTF8 string and print it.
printf("%s\n", *utf8);
isolate->Dispose();
v8::V8::Dispose();
v8::V8::ShutdownPlatform();
delete create_params.array_buffer_allocator;
return 0;
-
使用在 ninja 构建中创建的新单体库构建您的源代码:
g++ -Iv8/include src/main.cc -o bin/my_program -lv8_monolith -Lv8/out.gn/x64.release.sample/obj/ -pthread -std=c++11
为此,您的文件结构应类似于
depot_tools
v8
src/main.cc
它将在您的bin
文件夹中创建一个名为my_program
的新可执行文件,您可以直接执行./bin/my_program
【讨论】:
以上是关于在 Windows 上构建 V8 不输出 v8_base.lib的主要内容,如果未能解决你的问题,请参考以下文章
Windows 编译 v8 上的 pkg-config 错误
应该使用哪个 Android 虚拟设备在 Windows 上启动 arm64-v8a APK?