Re: [v8-users] Re: Building standalone v8

2018-11-20 Thread Peter Schow
On Tue, Nov 20, 2018 at 5:50 PM madana gopal  wrote:
>
> Hi,
>
> could someone please provide suggestions on this.

You may get more help if you provide information on your platform/OS.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] Building v8 with Makefile

2018-11-13 Thread Peter Schow
Node has been built with yocto, correct?  You may want to see see how
the Node yocto recipe(s) work, and see if someone has already done the
heavy-lifting for V8.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] Arraybuffer

2018-09-19 Thread Peter Schow
On Wed, Sep 19, 2018 at 2:36 PM dan Med  wrote:
> This is how I see it atm
> Each tab is a process that is composed of several threads, this process is 
> sandboxed with the Windows kernel security ( on Windows )
> Then we have WebKit which is the rendered thread inside of this main tab 
> (thread) which as the name implies will render the page.
> When in the renderer process is v8 called ?
> Or when WebKit is executing UI things v8 is also running JavaScript code ?

This mailing list is about V8 itself, not arbitrary consumers (there
are many) of V8.  Do you understand the difference?  V8 has no notion
of "tabs", "WebKit", "renderer process", or "UI".  I suggest you find
another place to ask your questions.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] Arraybuffer

2018-09-13 Thread Peter Schow
On Thu, Sep 13, 2018 at 10:45 AM dan Med  wrote:
> That isn’t my question
> Arraybufferbuilder:append how could I get that to be called.
> What I really need is a little guidance on how to understand how v8 will 
> parse my JavaScript script and how it will allocate the data.
> Maybe even how a buffer or if there’s something that describes how buffers 
> are handeled or if there’s a file or code that tells me that not the memory I 
> know... just how it will execute it that’s all

Starting with the sample REPL code at:
 https://github.com/v8/v8/blob/master/samples/shell.cc

could answer your questions.  In the days that you've been pursuing
this, you could have traced all this by now.  Good luck.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] Arraybuffer

2018-09-11 Thread Peter Schow
On Tue, Sep 11, 2018 at 2:09 PM dan Med  wrote:
>
> Would you suggest to build v8 such that I can debug it as I want ?

It's difficult to go wrong with this approach if you want to better
understand V8 or any large, complex system.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] How to build d8 with no dependencies against libv8 or libv8_*.so

2018-08-22 Thread Peter Schow
On Tue, Aug 21, 2018 at 2:26 PM Mingwei Zhang  wrote:
>
> No necessary. Since d8 with lots of dependencies generates issues for me on 
> debugging, I am just wondering if there is any options generating a self 
> contained d8 instead of a thin wrapper d8.

I guess I do not understand the question.

d8 is a consumer of libv8, llibv8_libbase, and libv8_platform.  On my
X64 platform, it looks like this:

% ldd ./d8
libv8.so => /home/work/v8/v8/out/x64.debug/././libv8.so (0x7fc509698000)
libv8_libbase.so =>
/home/work/v8/v8/out/x64.debug/././libv8_libbase.so
(0x7fc50bd12000)
libv8_libplatform.so =>
/home/work/v8/v8/out/x64.debug/././libv8_libplatform.so
(0x7fc50bccf000)
.
.
.

What do you want it to look like?

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] How to build d8 with no dependencies against libv8 or libv8_*.so

2018-08-21 Thread Peter Schow
On Tue, Aug 21, 2018 at 12:28 PM Mingwei Zhang  wrote:
>
> Hi,
>
> I try to compile V8 5.9.21 and some other version of V8 from source code. My 
> question is how to make d8 more self contained such that no dependencies like 
> libv8*.so are required to run the executable?

Are you asking about how to build d8 as a static executable?

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.