You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to v8-u...@googlegroups.com
Hi All,
I have downloaded and built the sources with gyp. When building the all solution i do not see any v8.dll or v8.lib file. rather i v8.obj file. I also see files in the folder v8\build\Debug\lib as follows:
preparser_lib.lib
v8_base.lib
v8_nosnapshot.lib
v8_snapshot.lib
now i am still not able to build the helloworld example in vs studio 10. I get fatal LINK error when I put the above mentioned lib files in the configuration -> Linker -> Input !!!
Can anyone help??
Best,
Riyadh
Yang Guo
unread,
Aug 24, 2012, 9:45:59 AM8/24/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to v8-u...@googlegroups.com
I suspect that what you want is a shared library build of V8. Simply add library=shared as option when building with gyp.
Yang
Jakob Kummerow
unread,
Aug 27, 2012, 7:39:17 AM8/27/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to v8-u...@googlegroups.com
As Yang said, when you want a v8.dll, you need to build a shared library.
You should be able to link against static libraries too. It's expected that there's no v8.lib; you should link against v8_base.lib and v8_snapshot.lib.