[v8-users] v8 bootstrap error when creating a context.

2016-11-10 Thread Jane Chen
Embedding v8 5.3. Running code to create a context and execute the same JavaScript code in a loop. After thousands of iterations, I get "Exception thrown during bootstrapping". Here's the stack: 51 v8::internal::ReportBootstrappingException() /space/projects/v8-git/v8/src/isolate.cc:960

Re: [v8-users] Re: Linking V8 to app on Windows

2016-11-10 Thread Jochen Eisinger
on 5.3, it's not yet possible to build the libplatform as a shared library (dll), sorry. This is fixed in the current development branch. also, by default we don't actually create static libraries, but gn just keeps track of the object files you need. You can change that by manually replacing

Re: [v8-users] libstdc++ from gcc4.6 used to build ICU and v8?

2016-11-10 Thread Jane Chen
Hi Jochen, Thank you for responding and filing the bug. It looks like that it has a dependency on Trusty which is using gcc 4.6. I checked and found that this dependency did not appear to be there in v8 4.6.88. Do you know when this was introduced? I just want a way to isolate the issue

[v8-users] Unable to download V8 on Ubuntu Linux

2016-11-10 Thread sdaniel
Trying to compile V8 for Android. I have Depot Tools, G++ etc all setup and running. The "gclient sync" command seems to exit with an error. On further investigation it seems to fail in several places. Here are some errors: File

Re: [v8-users] Re: Linking V8 to app on Windows

2016-11-10 Thread Ivan Pizhenko
So I would like to hear comments on this from some V8 developer or whoever solved the issue w/o Nuget package. 2016-11-10 16:05 GMT+02:00 Ivan Pizhenko : > Thank you for advise, George, but what you suggest is not an option in the > my case, I need to have built from

Re: [v8-users] Re: Linking V8 to app on Windows

2016-11-10 Thread Ivan Pizhenko
Thank you for advise, George, but what you suggest is not an option in the my case, I need to have built from sources exactly this stable version 5.3.332.45. There is no Nuget package fir exactly this version, and there are also other circumstances those prevent me using Nuget package. So I am

Re: [v8-users] Embedded v8 in Android: crash when executing persistent Function in another thread

2016-11-10 Thread Jochen Eisinger
can you file a bug at crbug.com/v8/new please? It would be great if you could provide a complete repro case! thanks -jochen On Thu, Nov 10, 2016 at 11:14 AM Kevin Read wrote: > Hi all, > > I'm in the process of porting my embedded v8 from a very old version to > current

Re: [v8-users] Building V8 libs for Android on Windows 10

2016-11-10 Thread sdaniel
Jochen I have the latest g++ packages installed . However I discovered that all components of the V8 package did not download. The command "gclient sync --with_branch_heads" seems to fail with this message: .. Downloading

[v8-users] Embedded v8 in Android: crash when executing persistent Function in another thread

2016-11-10 Thread Kevin Read
Hi all, I'm in the process of porting my embedded v8 from a very old version to current stable. I have this code that is called from JNI from a different thread than the one that initially created the Isolate and the initial context: v8::Locker l (isolate); Isolate::Scope