[v8-users] Re: window 7 mingw w64 compiled get link error.

2013-03-07 Thread William Wang
I download the lastest v8 source from trunk (#13853 2013.03.07 ). but this I manually add some addtional lib option when create v8.dll: -LF:\jstool\ming_w64\i686-w64-mingw32\lib -LF:\jstool\ming_w64\lib -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -ladvapi32 -lshell32 -lole32

[v8-users] Profiler crash

2013-03-07 Thread Damien Gleizes
Hi all, I am trying to work with the profiler API but I get an unexpected crash: I am probably doing something wrong but I can't figure what.. any help or hints would be appreciated! From the main thread I create an isolate and a context. Another thread is started that enters the created

Re: [v8-users] window 7 mingw w64 compiled get link error.

2013-03-07 Thread Jakob Kummerow
On Wed, Mar 6, 2013 at 3:36 AM, William Wang william.w...@gmail.com wrote: I want get v8.dll but link fail.only get libv8.a. Environment: Window 7 64bit v8 source code: svn checkout http://v8.googlecode.com/svn/trunk/ v8 today( 2013.3.6) refresh again version is 13833 mingw:

Re: [v8-users] window 7 mingw w64 compiled get link error.

2013-03-07 Thread Ondřej Žára
The bad news is that building with GYP on MinGW does not work out of the box currently. It would be great if you had time to investigate what's going wrong, and fix it :-) Easy. The full file names are used as hash keys throughout the GYP build process; this fails badly due to the fact

[v8-users] Simple way of running html embedded js

2013-03-07 Thread Sandor Hadas
Hi There, I was amazed to find Google V8. It compiled fast, run flawless. It was fun. Simple tests were OK until I tried document.write(x); . I read up related posts and found that the DOM is not included in V8. Erm. :( It is not that amazing anymore. My objective is fairly simple and I

Re: [v8-users] Simple way of running html embedded js

2013-03-07 Thread Stephan Beal
On Thu, Mar 7, 2013 at 5:30 PM, Sandor Hadas sourcesamp...@gmail.comwrote: So my question is: What is the simplest way (without depending on another big library like v8-juice) to define the object model? Something really-really-really simple... There is no simple/trivial way to do it. The

[v8-users] Cross compiling v8 targeting ARM

2013-03-07 Thread Oliver Schrenk
Hi, I'm trying to build v8 for an Android device (specifically Sony Xperia S). I was able to build a cross compile toolchain `arm-unknown-linux-gnueabi` on OS X using crosstool-ng. As the next steps I did: Download and install an NDK wget

[v8-users] Re: Simple way of running html embedded js

2013-03-07 Thread Sandor Hadas
Very well then, lets turn this question around. I do not necessarily need to include the V8 shell, a derivative would do; it would be nice to use a V8 based resolver. Is there any existing open source or free application (preferably something compilable into a binary or a script like python,

Re: [v8-users] Re: Simple way of running html embedded js

2013-03-07 Thread Stephan Beal
On Thu, Mar 7, 2013 at 9:36 PM, Sandor Hadas sourcesamp...@gmail.comwrote: 4) It runs javascript in its black (gray) box and removes all javascript; it replaces those with actual generated html code, so only html resides with no javascript script nodes inside This behaviour does not at all

Re: [v8-users] Cross compiling v8 targeting ARM

2013-03-07 Thread Jakob Kummerow
There should be no need to use your own toolchain, as the Android NDK ships with one. Since you're working on OSX, why did you download the NDK for Linux? Please try again with the toolchain that comes with the Android NDK for Mac (just unset your CXX/LINK variables, as it will be used

Re: [v8-users] Re: Simple way of running html embedded js

2013-03-07 Thread Louis Santillan
Phantom.js maybe? On Thu, Mar 7, 2013 at 1:05 PM, Jérémy Lal holi...@gmail.com wrote: On 07/03/2013 21:36, Sandor Hadas wrote: Very well then, lets turn this question around. I do not necessarily need to include the V8 shell, a derivative would do; it would be nice to use a V8 based

[v8-users] which branch v8 source is stable(after base testing?)

2013-03-07 Thread William Wang
by this url: http://code.google.com/p/v8/wiki/Source *Under trunk/ is the stable edge, which is updated weekly. It is a copy of the bleeding edge that has been successfully tested. Use this if you want to be almost up to date and don't want your code to break whenever we accidentally forget

Re: [v8-users] which branch v8 source is stable(after base testing?)

2013-03-07 Thread Sven Panne
The description in the Wiki is not really accurate: We copy bleeding_edge to trunk on a per-need basis, and things have been mildly tested by our own v8 build bots. Depending on what you need, the branch for the next upcoming Chrome version (currently http://v8.googlecode.com/svn/branches/3.16/)