Build googles v8 as a shared library on windows?

Is it possible to build googles v8 as a shared library with gyp on windows (msvc 2012)? Everything I tried does not work. What I tried:

python build\gyp_v8 -Dcomponent=shared_library python build\gyp_v8 library=shared 

In the second, an error appears that the "library" is unknown. The first has no effect.

+8
build v8 gyp
source share
1 answer

This works in the project that I am using:

 python build\gyp_v8 -Dtarget_arch=ia32 -Dcomponent=shared_library msbuild /p:Configuration=Release /p:Platform=Win32 tools\gyp\v8.sln 
+9
source share

All Articles