The default is to build static libraries. It is expected that you will get v8_base.lib and v8_snapshot.lib (and also v8_nosnapshot.lib and preparser.lib which you can ignore). If you want to statically link your own project against V8, you need to link against both of these.
The alternative is to build a single shared library (v8.dll). To do that, specify -Dcomponent=shared_library when you run build/gyp_v8. On Mon, May 21, 2012 at 3:45 PM, Guilherme Silva <[email protected]> wrote: > Hi. > > I am new to developing c++ in Visual Studio. > Followed the tutorial to build on this site: > http://evadeflow.com/2011/03/compiling-v8-on-windows-7/. > After that i Executed the command: > > "c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.com" > /build Release build\All.sln > > > I got no errors. My problem is that that link builded some .lib files such > as v8_base.lib, but no v8.lib. > I would like to know what steps i have to take after the build tutorial > from http://evadeflow.com/2011/03/compiling-v8-on-windows-7/ to generate > the v8.lib > > Thanks, best regards > Guilherme Silva -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
