4

当做 a 时vcbuild.bat Release,我会得到一个这样的lib目录:

$ ls -1Ssh Release/lib/
total 303M
263M v8_base.lib
 22M openssl.lib
7.2M v8_snapshot.lib
6.2M v8_nosnapshot.lib
4.8M uv.lib
480K zlib.lib
 88K http_parser.lib

调试要好得多,但仍然:

$ ls -1Ssh Debug/lib/
total 102M
 83M v8_base.lib
 14M openssl.lib
2.1M uv.lib
1.6M v8_snapshot.lib
1.3M v8_nosnapshot.lib
352K zlib.lib
 80K http_parser.lib

关于这一切,我不明白两件事:

  • 为什么 v8 这么
  • 为什么 Debug 构建会产生更小的 lib 文件?

我在 Windows 7 64 位。

编辑我刚刚发现无论主机是什么架构,默认值target_arch都是ia32, not 。x64所以上面的数字是指 32 位版本。64 位数字稍大一些(309M / 128M)。

4

3 回答 3

3

为什么 v8 这么大?

可能是因为它的依赖关系和特性?喜欢:

$ ls -1Ssh Release/obj/v8_base/|head -15
total 264M
5.1M hydrogen.obj
4.7M objects.obj
4.6M lithium-codegen-ia32.obj
4.4M lithium-ia32.obj
4.3M runtime.obj
4.3M hydrogen-instructions.obj
4.2M lithium-allocator.obj
4.1M lithium-gap-resolver-ia32.obj
3.7M compiler.obj
3.7M isolate.obj
3.5M v8.obj
3.4M lithium.obj
3.3M heap.obj
3.3M api.obj

不过,好像有点大……

为什么 Debug 构建会产生更小的 lib 文件?

也许是我发现的这些速度优化common.gypi

  'Release': {
    ...
    'msvs_settings': {
      'VCCLCompilerTool': {
        'RuntimeLibrary': 0, # static release
        'Optimization': 3, # /Ox, full optimization
        'FavorSizeOrSpeed': 1, # /Ot, favour speed over size
        'InlineFunctionExpansion': 2, # /Ob2, inline anything eligible
于 2012-08-08T03:31:03.743 回答
2

我花了一段时间才弄清楚为什么 V8 引擎要在 Windows 上构建如此庞大的构建。

在构建 V8 时可以使用一个选项 -D"component=shared" 来创建更小的库 v8.lib (~250kb) 和需要 V8.dll (~12mb)、icui18n.dll (~2.5mb) 的 dll, icuuc.dll (~1.5mb)。

From the V8 Directory:
third_party\python_26\python.exe build\gyp_v8 -G msvs_version=2010 -Dtarget_arch=x64 -D"component=shared" -G 
于 2014-02-25T03:01:32.540 回答
-2

真正的答案是您没有选择“发布”构建选项。释放模式显着减小了尺寸。

于 2013-10-04T03:26:40.383 回答