The philosophy seems to be that the code is always the most up to date Documentation of v8. So questions about API and usage are best answered by reading v8.h [0], and d8.cc [1] and/or samples (shell.cc [2], process.cc [3], and lineprocessor.cc [4]), and/or the files in src/.
[0] (https://code.google.com/p/v8/source/browse/trunk/include/v8.h) [1] (https://code.google.com/p/v8/source/browse/trunk/src/d8.cc) [2] (https://code.google.com/p/v8/source/browse/trunk/samples/shell.cc) [3] (https://code.google.com/p/v8/source/browse/trunk/samples/process.cc) [4] (https://code.google.com/p/v8/source/browse/trunk/samples/lineprocessor.cc) On Fri, Sep 5, 2014 at 8:47 AM, James <[email protected]> wrote: > Why is this not shown in the Google embedders guide? > > -jw > (sent via iPhone) > > On Sep 5, 2014, at 3:53 AM, Jochen Eisinger <[email protected]> wrote: > > Note that you'll also need to link against the v8_libplatform library to > make this work > > best > -jochen > > > On Fri, Sep 5, 2014 at 9:23 AM, Sven Panne <[email protected]> wrote: >> >> You need to initialize the platform, see e.g. >> https://code.google.com/p/v8/source/browse/branches/bleeding_edge/samples/shell.cc#82. >> No fancy locking etc. involved here, the platform is internally just a >> global variable. Not nice, but OK for now... >> >> -- >> -- >> v8-users mailing list >> [email protected] >> http://groups.google.com/group/v8-users >> --- >> You received this message because you are subscribed to the Google Groups >> "v8-users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> For more options, visit https://groups.google.com/d/optout. > > > -- > -- > v8-users mailing list > [email protected] > http://groups.google.com/group/v8-users > --- > You received this message because you are subscribed to a topic in the > Google Groups "v8-users" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/v8-users/wjMwflJkfso/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/d/optout. > > -- > -- > v8-users mailing list > [email protected] > http://groups.google.com/group/v8-users > --- > You received this message because you are subscribed to the Google Groups > "v8-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
