Как мне собрать v8 на Windows? - PullRequest
0 голосов
/ 10 мая 2011

Может кто-нибудь сказать мне, как установить и собрать v8 на Windows?Я использую Windows 7 с VS 2008.

1 Ответ

3 голосов
/ 17 декабря 2014

В VS2013 у меня сработало следующее:

С http://gneu.org/2014/02/integrating-v8/

git clone git://github.com/v8/v8.git v8
cd v8
svn co http://gyp.googlecode.com/svn/trunk build/gyp
svn co http://src.chromium.org/svn/trunk/tools/third_party/python_26@89111 third_party/python_26
svn co http://src.chromium.org/svn/trunk/deps/third_party/cygwin@231940 third_party/cygwin
svn co https://src.chromium.org/chrome/trunk/deps/third_party/icu46 third_party/icu

Теперь из Собрать googles v8 как общую библиотеку для Windows?

third_party/python_26/python.exe build\gyp_v8 -Dtarget_arch=ia32 -Dcomponent=shared_library
msbuild /p:Configuration=Release /p:Platform=Win32 tools\gyp\v8.sln
...