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

2017-04-10 Thread DánielN
This bug is fixed now: https://bugs.chromium.org/p/v8/issues/detail?id=6158==ID%20Type%20Status%20Priority%20Owner%20Summary%20HW%20OS%20Component%20Stars=1000 On Wednesday, 1 March 2017 18:16:49 UTC, DánielN wrote: > > I would like to add some more information to this topic. It could be >

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

2017-03-01 Thread DánielN
I would like to add some more information to this topic. It could be useful to someone later. The previous version of V8 I am using is about a year old now and I would like to debug javascript in the embedded vm that is why I need the latest version. I struggled a lot to make it work. I did not

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

2016-11-16 Thread Ivan Pizhenko
Edited gni/v8.gni as you recommended and trying to build with following args.gn: is_component_build = false is_debug = true v8_optimized_debug=false target_cpu="x64" v8_target_cpu="x64" and getting following error: ninja -j1 -C out.gn/x64.debug ninja: Entering directory `out.gn/x64.debug'

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

2016-11-15 Thread Ivan Pizhenko
Thaks, I will try this workaround, but also please tell me, what exactly do you mean by current development branch? Which version of V8 does it corresponds? 5.5? 5.6? 2016-11-10 20:33 GMT+02:00 Jochen Eisinger : > on 5.3, it's not yet possible to build the libplatform as a

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] 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

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

2016-11-09 Thread George Marques
I also had troubles with the build system. I found it's much easier to just use this Nuget package: https://github.com/pmed/v8-nuget. On Wednesday, November 9, 2016 at 5:42:19 AM UTC-2, Ivan P. wrote: > > Hello, I am porting my app from V8 3.19 to V8 5.3.332.45. > I have built new V8 version as