[v8-users] Re: Building v8 shared library on windows

2019-12-17 Thread 'Stefan Wörthmüller' via v8-users
Note that Microsoft also offers prebuild verrions of v8 via the package manager or direct to download. I.e. https://www.nuget.org/packages/v8-v140-x64/ click on "Download" at the right and rename the archive to zip. Works well for me. -- -- v8-users mailing list v8-users@googlegroups.com http:

[v8-users] Understanding heap usage and limits

2019-12-17 Thread Chris Dumoulin
I'm trying to track the memory used in the heap, and understand how that relates to the heap size limits that are set. I'm looking at HeapStatistics, HeapSpaceStatistics, and ResourceConstraints. I have the following specific questions: - For HeapStatistics I'm looking for details on what exactl

[v8-users] Re: Building v8 shared library on windows

2019-12-17 Thread 'Bill Ticehurst' via v8-users
To be clear, NuGet is a Microsoft run package manager, but "Microsoft" doesn't offer any pre-built V8 binaries. A user account named "pmed" created/uploaded that package, not a Microsoft account. If you are building V8 in a default manner with Clang as it appears, then you can't link it with a

[v8-users] Re: Building v8 shared library on windows

2019-12-17 Thread 'Stefan Wörthmüller' via v8-users
The v8 libraries from nuget can be used well with VC2017. Thats all i know. -- -- 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 gro

[v8-users] Re: Building v8 shared library on windows

2019-12-17 Thread Ivan Pizhenko
Hi Bill, so what needs to be fixed to get DLL build (i.e. is_component_build=true) built successfully with MSVC compiler? I've recently run into the same linking issue with DLL build compiled using clang. And to say truth, it's weird that DLL build works only with clang. p.s. I cannot use prebu